- Timestamp:
- Oct 17, 2024, 7:14:19 PM (4 weeks ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Platform/bsdi.mk
r374 r375 3 3 CC = cc 4 4 AR = ar 5 CFLAGS = -g -std=c99 -DPREFIX=\"$(PREFIX)\" -I ../VC6Compat -I $(PWD)/Common-fPIC5 CFLAGS = -g -std=c99 -DPREFIX=\"$(PREFIX)\" -I $(PWD)/Common -I ../VC6Compat -fPIC 6 6 LDFLAGS = 7 7 LIBS = -
trunk/VC6Compat/stdint.h
r301 r375 4 4 #define __STDINT_H__ 5 5 6 #ifdef __bsdi__ 7 typedef u_int8_t uint8_t; 8 typedef u_int16_t short uint16_t; 9 typedef u_int32_t uint32_t; 10 #else 6 11 typedef unsigned char uint8_t; 7 12 typedef unsigned short uint16_t; … … 12 17 13 18 #define INT32_MAX 0x7fffffff 19 #endif 14 20 15 21 #endif
Note:
See TracChangeset
for help on using the changeset viewer.