unistd.h 201 字节
Newer Older
1 2 3 4 5 6
#ifdef __KERNEL__
# ifdef CONFIG_SUPERH32
#  include "unistd_32.h"
# else
#  include "unistd_64.h"
# endif
7
#else
8 9 10 11 12
# ifdef __SH5__
#  include "unistd_64.h"
# else
#  include "unistd_32.h"
# endif
L
Linus Torvalds 已提交
13
#endif