Re: why can't include /sys/types and /linux/fs.h in the same file

2001-04-14 Thread Philip Blundell
>#include >#include >int main () >{ >; // contains no C programs, >} >and give the command " cc -D__KERNEL__ -I/usr/src/linux/include to compiler >the program . You can't mix environments. Either you're building part of the kernel, in which case you need to use -D__KERNEL__ and headers, o

why can't include /sys/types and /linux/fs.h in the same file

2001-04-14 Thread vivid_liou
Dear All: I wrote a very small program as following : #include #include int main () { ; // contains no C programs, } and give the command " cc -D__KERNEL__ -I/usr/src/linux/include to compiler the program . A lot of parser error messages show on the screen . Does anybody know why ? - To u