Changeset bd71da7 in rtems for c/src/libmisc


Ignore:
Timestamp:
04/07/97 21:30:42 (27 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
9ffcaa4a
Parents:
82478528
Message:

removed noreturn attribute to eliminate warnings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/libmisc/error/error.h

    r82478528 rbd71da7  
    2222int   rtems_error(int error_code, const char *printf_format, ...);
    2323#ifdef __GNUC__
    24 void  rtems_panic(const char *printf_format, ...)
    25                                          __attribute__ ((__noreturn__));
     24void  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 */
    2631#else
    2732void  rtems_panic(const char *printf_format, ...);
Note: See TracChangeset for help on using the changeset viewer.