consistent ATTRNORETURN prefix and NORETURN suffix

This commit is contained in:
nhmall
2025-05-30 22:01:20 -04:00
parent 50e5715ca5
commit 9ef5e886ee
10 changed files with 13 additions and 13 deletions

View File

@@ -16,8 +16,8 @@
int debuggable = 0; /* 1 if we can debug or show a call trace */
ATTRNORETURN void vms_exit(int);
ATTRNORETURN void vms_abort(void);
ATTRNORETURN void vms_exit(int) NORETURN;
ATTRNORETURN void vms_abort(void) NORETURN;
/* first arg should be unsigned long but <lib$routines.h> has unsigned int */