#include <stdio.h> typedef signed int s32_t; typedef signed long s32_t; int main(void) { // your code goes here return 0; }
Standard input is empty
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;
^~~~~
Standard output is empty