fork(1) download
  1. #ifndef _STDBOOL_H
  2. #define _STDBOOL_H
  3.  
  4. #ifndef __cplusplus
  5.  
  6. #define bool _Bool
  7. #define true 1
  8. #define false 0
  9.  
  10. #else /* __cplusplus */
  11.  
  12. /* Supporting <stdbool.h> in C++ is a GCC extension. */
  13. #define _Bool bool
  14. #define bool bool
  15. #define false false
  16. #define true true
  17.  
  18. #endif /* __cplusplus */
  19.  
  20. /* Signal that all the definitions are present. */
  21. #define __bool_true_false_are_defined 1
  22.  
  23. #endif /* stdbool.h */
  24.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
/usr/lib/gcc/i486-linux-gnu/4.8/../../../i386-linux-gnu/crt1.o: In function `_start':
(.text+0x18): undefined reference to `main'
collect2: error: ld returned 1 exit status
stdout
Standard output is empty