Changeset 1662 for trunk/src


Ignore:
Timestamp:
Nov 22, 2004, 1:46:52 PM (21 years ago)
Author:
bird
Message:

long_int trouble.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/include/sys/types.h

    • Property cvs2svn:cvs-rev changed from 1.9 to 1.10
    r1661 r1662  
    346346
    347347
    348 /* bird: OS/2 Toolkit Pollution. */
    349 #if !defined (_POSIX_SOURCE) || defined(__USE_EMX)
     348/* bird: OS/2 Toolkit Pollution.
     349 * bird: This is a source of trouble and not used in LIBC. Try hiding
     350 *       it. And if that doesn't work, try make both declarations longs. */
     351#ifdef __USE_IBM_UGLENESS
    350352#ifdef __32BIT__
    351 typedef int             long_int;       /* 32-bit compilers */
     353typedef int             long_int;      /* 32-bit compilers */
    352354#else
    353355typedef long int        long_int;       /* 16-bit compilers */
    354356#endif
    355 #endif /* not _POSIX_SOURCE */
     357#endif /* __USE_IBM_UGLENESS */
    356358
    357359#endif /* not _SYS_TYPES_H_ */
Note: See TracChangeset for help on using the changeset viewer.