Changeset bd71da7 in rtems for c/src/libmisc
- Timestamp:
- 04/07/97 21:30:42 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 9ffcaa4a
- Parents:
- 82478528
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/libmisc/error/error.h
r82478528 rbd71da7 22 22 int rtems_error(int error_code, const char *printf_format, ...); 23 23 #ifdef __GNUC__ 24 void rtems_panic(const char *printf_format, ...) 25 __attribute__ ((__noreturn__)); 24 void rtems_panic(const char *printf_format, ...); 25 /* 26 * We should be able to use this attribute but gcc complains that 27 * rtems_panic does in fact return. :( 28 * 29 * __attribute__ ((__noreturn__)); 30 */ 26 31 #else 27 32 void rtems_panic(const char *printf_format, ...);
Note: See TracChangeset
for help on using the changeset viewer.