Changeset 2682


Ignore:
Timestamp:
Mar 20, 2006, 6:08:58 AM (19 years ago)
Author:
bird
Message:

-> kBuild

Location:
trunk/libc/src
Files:
3 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/libc/src/fbsdlibc/gdtoa/arithchk.c

    r2257 r2682  
    137137        }
    138138
    139 int main()
     139int main(int argc, char **argv)
    140140{
    141141        Akind *a = 0;
     
    150150                }
    151151#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        }
    153162#endif
    154163
  • trunk/libc/src/gencat/genlib.c

    r1311 r2682  
    4040#include <string.h>
    4141#include <unistd.h>
    42 #ifndef __EMX__
    4342#include "msgcat.h"
    44 #else
    45 #include "../lib/bsd/nls/msgcat.h"
    46 #endif
    4743#include "gencat.h"
    4844
  • trunk/libc/src/libc/conv/makepow5.c

    r18 r2682  
    44#include <stdlib.h>
    55#include <getopt.h>
    6 #include <emx/bigint.h>
     6#include "include/emx/bigint.h"
    77
    88static const char *out_fname;
  • trunk/libc/src/libc/time/timetabs_gen.c

    r903 r2682  
    2626
    2727#include <stdio.h>
    28 #include <emx/time.h>
     28#include "include/emx/time.h"
    2929
    3030int main()
Note: See TracChangeset for help on using the changeset viewer.