URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [newlib-1.10.0/] [newlib/] [libc/] [sys/] [linux/] [include/] [stdint.h] - Rev 1010
Go to most recent revision | Compare with Previous | Blame | View Log
/* libc/sys/linux/include/stdint.h - Standard integer types */ /* Written 2000 by Werner Almesberger */ #ifndef _NEWLIB_STDINT_H #define _NEWLIB_STDINT_H /* * FIXME: linux/types.h defines various types that rightfully belong into * stdint.h. So we have no choice but to include linux/types.h directly, even * if this causes name space pollution. Note: we have to go via sys/types.h * in order to resolve some other compatibility issues. */ #include <sys/types.h> #endif
Go to most recent revision | Compare with Previous | Blame | View Log