Ignore:
Timestamp:
2006-10-04T15:11:27+13:00 (18 years ago)
Author:
kjdon
Message:

changed u_char and u_long hash defines to typedefs, otherwise they can clash with other typedefs on windows

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/mgpp/lib/sysfuncs.h

    r3048 r12996  
    378378
    379379/* [RPAP - Feb 97: WIN32 Port] */
    380 #ifndef u_long
    381 # define u_long unsigned long
    382 #endif
    383 #ifndef u_char
    384 # define u_char unsigned char
    385 #endif
    386 
     380typedef unsigned char u_char;
     381typedef unsigned long u_long;
    387382
    388383#endif /* SYSFUNCS_H */
Note: See TracChangeset for help on using the changeset viewer.