Ticket #7537: assert.patch

File assert.patch, 618 bytes (added by unitedroad, 13 years ago)

Patch

  • headers/posix/assert.h

     
    1616#endif
    1717
    1818extern void __assert_fail(const char *assertion, const char *file,
    19                 unsigned int line, const char *function);
     19                unsigned int line, const char *function)
     20    __attribute__ ((noreturn));
    2021
    2122extern void __assert_perror_fail(int error, const char *file,
    22                 unsigned int line, const char *function);
     23                unsigned int line, const char *function)
     24    __attribute__ ((noreturn));
    2325
    2426#ifdef __cplusplus
    2527}