Changeset 2682
- Timestamp:
- Mar 20, 2006, 6:08:58 AM (19 years ago)
- Location:
- trunk/libc/src
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libc/src/fbsdlibc/gdtoa/arithchk.c
r2257 r2682 137 137 } 138 138 139 int main( )139 int main(int argc, char **argv) 140 140 { 141 141 Akind *a = 0; … … 150 150 } 151 151 #else 152 f = stdout; 152 /* bird added this */ 153 if (argc == 2) { 154 f = fopen(argv[1], "w"); 155 if (!f) { 156 fprintf(stderr, "Cannot open '%s' for writing\n", argv[1]); 157 return 1; 158 } 159 } else { 160 f = stdout; 161 } 153 162 #endif 154 163 -
trunk/libc/src/gencat/genlib.c
r1311 r2682 40 40 #include <string.h> 41 41 #include <unistd.h> 42 #ifndef __EMX__43 42 #include "msgcat.h" 44 #else45 #include "../lib/bsd/nls/msgcat.h"46 #endif47 43 #include "gencat.h" 48 44 -
trunk/libc/src/libc/conv/makepow5.c
r18 r2682 4 4 #include <stdlib.h> 5 5 #include <getopt.h> 6 #include <emx/bigint.h>6 #include "include/emx/bigint.h" 7 7 8 8 static const char *out_fname; -
trunk/libc/src/libc/time/timetabs_gen.c
r903 r2682 26 26 27 27 #include <stdio.h> 28 #include <emx/time.h>28 #include "include/emx/time.h" 29 29 30 30 int main()
Note:
See TracChangeset
for help on using the changeset viewer.