Changeset 213 for trunk/src/emx/include


Ignore:
Timestamp:
May 21, 2003, 11:57:27 PM (22 years ago)
Author:
zap
Message:

o Added OS/2 Unicode API headers and import file.
o Modified most standard functions in .s files to use the _std_ prefix.
o Fixed c_alias.a build rules so that it uses the correct c.a file (either

debug or optimized depending on build mode).

Location:
trunk/src/emx/include
Files:
4 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/include/emx/asm386.h

    • Property cvs2svn:cvs-rev changed from 1.2 to 1.3
    r212 r213  
    7373#define FP_INFINITE     3
    7474#define FP_NAN          4
     75
     76/* Macros for defining standard libc functions */
     77
     78#define CONCAT(x,y) x ## y
     79#define _STD(x) CONCAT(__std_,x)
  • trunk/src/emx/include/emx/syscalls.h

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r212 r213  
    5353struct timeb;
    5454struct timeval;
    55 struct _fd_set;
    5655
    5756struct _find
     
    104103{
    105104  int              nfds;
    106   struct _fd_set * readfds;
    107   struct _fd_set * writefds;
    108   struct _fd_set * exceptfds;
     105  struct fd_set * readfds;
     106  struct fd_set * writefds;
     107  struct fd_set * exceptfds;
    109108  struct timeval * timeout;
    110109};
Note: See TracChangeset for help on using the changeset viewer.