fork download
  1. #include <stdio.h>
  2.  
  3. typedef signed int s32_t;
  4. typedef signed long s32_t;
  5.  
  6. int main(void) {
  7. // your code goes here
  8. return 0;
  9. }
  10.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:4:21: error: conflicting types for ‘s32_t’
 typedef signed long s32_t;
                     ^~~~~
prog.c:3:21: note: previous declaration of ‘s32_t’ was here
 typedef signed int  s32_t;
                     ^~~~~
stdout
Standard output is empty