- File:
-
- 1 edited
-
src/tests/.expect/32/declarationSpecifier.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/tests/.expect/32/declarationSpecifier.txt
r092528b r4fbdd1e3 1 __attribute__ ((__ malloc__,__nothrow__,__leaf__)) extern void *malloc(unsigned int __size);1 __attribute__ ((__nothrow__,__leaf__,__malloc__)) extern void *malloc(unsigned int __size); 2 2 __attribute__ ((__nothrow__,__leaf__)) extern void free(void *__ptr); 3 __attribute__ ((__no return__,__nothrow__,__leaf__)) extern void abort(void);4 __attribute__ ((__no nnull__(1),__nothrow__,__leaf__)) extern int atexit(void (*__func)(void));5 __attribute__ ((__no return__,__nothrow__,__leaf__)) extern void exit(int __status);3 __attribute__ ((__nothrow__,__leaf__,__noreturn__)) extern void abort(void); 4 __attribute__ ((__nothrow__,__leaf__,__nonnull__(1))) extern int atexit(void (*__func)(void)); 5 __attribute__ ((__nothrow__,__leaf__,__noreturn__)) extern void exit(int __status); 6 6 extern int printf(const char *__restrict __format, ...); 7 7 volatile const short __x1__CVs_1; … … 629 629 } 630 630 static inline int invoke_main(int argc, char* argv[], char* envp[]) { (void)argc; (void)argv; (void)envp; return __main__Fi_iPPCc__1(argc, argv); } 631 __attribute__ ((__ malloc__,__nothrow__,__leaf__)) extern void *malloc(unsigned int __size);631 __attribute__ ((__nothrow__,__leaf__,__malloc__)) extern void *malloc(unsigned int __size); 632 632 __attribute__ ((__nothrow__,__leaf__)) extern void free(void *__ptr); 633 __attribute__ ((__no return__,__nothrow__,__leaf__)) extern void abort(void);634 __attribute__ ((__no nnull__(1),__nothrow__,__leaf__)) extern int atexit(void (*__func)(void));635 __attribute__ ((__no return__,__nothrow__,__leaf__)) extern void exit(int __status);633 __attribute__ ((__nothrow__,__leaf__,__noreturn__)) extern void abort(void); 634 __attribute__ ((__nothrow__,__leaf__,__nonnull__(1))) extern int atexit(void (*__func)(void)); 635 __attribute__ ((__nothrow__,__leaf__,__noreturn__)) extern void exit(int __status); 636 636 extern int printf(const char *__restrict __format, ...); 637 637 static inline int invoke_main(int argc, char **argv, char **envp);
Note:
See TracChangeset
for help on using the changeset viewer.