- Timestamp:
- Feb 3, 2008, 10:53:40 PM (14 years ago)
- Location:
- libcaca/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/cucul/figfont.c
r2191 r2225 305 305 f = _cucul_file_open(path, "r"); 306 306 #if !defined __KERNEL__ && defined HAVE_SNPRINTF 307 308 #if (! defined(snprintf)) && ( defined(_WIN32) || defined(WIN32) ) && (! defined(__CYGWIN__)) 309 #define snprintf _snprintf 310 #endif 311 307 312 if(!f) 308 313 { 309 _snprintf(altpath, 2047, "%s.tlf", path);314 snprintf(altpath, 2047, "%s.tlf", path); 310 315 altpath[2047] = '\0'; 311 316 f = _cucul_file_open(altpath, "r"); … … 313 318 if(!f) 314 319 { 315 _snprintf(altpath, 2047, "%s.flf", path);320 snprintf(altpath, 2047, "%s.flf", path); 316 321 altpath[2047] = '\0'; 317 322 f = _cucul_file_open(altpath, "r"); -
libcaca/trunk/src/mygetopt.c
r1905 r2225 27 27 /* DOS / Kernel driver */ 28 28 #ifndef __intptr_t_defined 29 #ifndef _UINTPTR_T 29 30 typedef unsigned int uintptr_t; 31 #endif 30 32 #endif 31 33
Note: See TracChangeset
for help on using the changeset viewer.