I'm trying to compile big piece of software which is X11 server on CentOS 7. During "make" I see this message:
<file>:34 syntax error near:
typedef unsigned short int __u_short;
Line 34 is exactly as message quotes. I'm not much C programmer but this line looks good to me. Here are couple more lines not marked as errors:
typedef unsigned char __u_char;
typedef unsigned short int __u_short;
typedef unsigned int __u_int;
typedef unsigned long int __u_long;
What is wrong with this code?
<file>:34 syntax error near:
typedef unsigned short int __u_short;
Line 34 is exactly as message quotes. I'm not much C programmer but this line looks good to me. Here are couple more lines not marked as errors:
typedef unsigned char __u_char;
typedef unsigned short int __u_short;
typedef unsigned int __u_int;
typedef unsigned long int __u_long;
What is wrong with this code?
Comment