Ignore:
Timestamp:
Jul 1, 2005, 6:20:01 AM (20 years ago)
Author:
bird
Message:

libc adjustments / config.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/libctests/glibc/posix/tst-execvp3.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r2134 r2135  
    2020{
    2121  int fd = create_temp_file ("testscript", &fname);
     22#if 0
    2223  dprintf (fd, "echo foo\n");
    2324  fchmod (fd, 0700);
    2425  close (fd);
     26#else
     27  FILE *pf = fdopen (fd, "w+");
     28  fprintf (pf, "echo foo\n");
     29  fflush (pf);
     30  fchmod (fd, 0700);
     31  fclose (pf);
     32#endif
    2533}
    2634
Note: See TracChangeset for help on using the changeset viewer.