Changeset 764
- Timestamp:
- Sep 30, 2003, 8:24:48 PM (22 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/binutils/libiberty/strerror.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r763 r764 20 20 #include <stdio.h> 21 21 #include <errno.h> 22 #ifdef __EMX__ /* EM put these two in the wrong header, they should be in stdio.h. */23 #include <stdlib.h>24 #endif25 22 26 23 #ifdef HAVE_SYS_ERRLIST -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/str/strerror.c
-
Property cvs2svn:cvs-rev
changed from
1.6
to1.7
r763 r764 2 2 3 3 #include "libc-alias.h" 4 #include <std lib.h>4 #include <stdio.h> 5 5 #include <string.h> 6 6 #include <emx/thread.h> -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/gcc/libiberty/strerror.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r763 r764 21 21 #include <errno.h> 22 22 23 #if defined(HAVE_SYS_ERRLIST) && ! defined(__EMX__)23 #ifdef HAVE_SYS_ERRLIST 24 24 #undef sys_nerr 25 25 #undef sys_errlist … … 38 38 #else 39 39 extern PTR memset (); 40 #endif41 42 #if defined(HAVE_SYS_ERRLIST) && defined(__EMX__)43 #undef sys_nerr44 #undef sys_errlist45 40 #endif 46 41 … … 664 659 msg = (char *) sys_errlist[errnoval]; 665 660 } 666 661 667 662 return (msg); 668 663 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.