In .:
[mono.git] / support / ChangeLog
1 2006-03-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2
3         * serial.c: Add get_signal_code, get_signal, and set_signal
4         functions to access serial signals. Also add a MonoSerialSignal
5         enum, which is a copy of System.IO.Ports.SerialSignal.
6
7 Thu Mar 16 17:27:46 CET 2006 Paolo Molaro <lupus@ximian.com>
8
9         * serial.c: removed useless serial.h file (it was also
10         breaking the build).
11
12 2006-03-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13
14         * serial.c: Fix a pair of wrong or incomplete assignations
15         in set_attributes.
16         
17 2006-02-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18
19         * serial.h: New file with serial port constants.
20         * serial.c: Use the constants in serial.h instead of magic numbers.
21         
22 2006-01-03  Jonathan Pryor  <jonpryor@vt.edu>
23
24         * sys-time.c: lutimes(2) only exists on some BSDs.  There's a configure
25           check for it now -- use it.
26
27 2005-12-28  Jonathan Pryor  <jonpryor@vt.edu>
28
29         * map-icalls.h: Flush (add utimes_bad, lutimes, futimes).
30         * sys-time.c: Add lutimes(2) and futimes(2) wrapper.
31
32 2005-12-27  Jonathan Pryor  <jonpryor@vt.edu>
33
34         * map.c: Include <sys/mman.h>.  Fixes #77091.  Thanks to Ben Gamari.
35
36 2005-12-01  Jonathan Pryor  <jonpryor@vt.edu>
37
38         * Makefile.am: Use $(CRYPT_LIB), not -lcrypt, as not all platforms 
39           support -lcrypt.
40         * stdlib.c: Wrap Mono_Posix_Syscall_setkey() within HAVE_SETKEY, not
41           PLATFORM_WIN32
42
43 2005-12-01  Daniel Drake  <dsd@gentoo.org>
44
45         * Makefile.am: Link against libcrypt, needed for setkey(3) as referenced
46         in stdlib.c. Problem caught by Michael Hill.
47
48 2005-11-07  Jonathan Pryor  <jonpryor@vt.edu>
49
50         * map-icalls.h: Oddly, this file didn't get the new functions added in
51           2005-10-14 -- ToConfstrName, FromConfstrName, etc.  Add them.
52         * map.c, map.h: Remove invalid enumeration value SyslogFacility.LOG_USRE.
53
54 2005-10-14  Jonathan Pryor  <jonpryor@vt.edu>
55
56         * signal.c: Don't build Syscall wrappers on Win32.
57
58 2005-10-14  Jonathan Pryor  <jonpryor@vt.edu>
59
60         * Makefile.am (MPH_UNIX_SOURCE): Add syslog.c.
61         * dirent.c, grp.c, pwd.c, signal.c, stdio.c, stdlib.c: Wrap functions which
62           return `void' so that they instead: (1) return `int', (2) clear errno
63           before calling the real function, and (3) return -1 if errno changed.
64           This must be done in native code because calling 
65           Stdlib.SetLastError/Syscall.xxx
66           from managed code won't work reliably (since errno may change between the
67           SetLastError call and the actual Syscall invocation).
68         * unistd.c: Same as above, and allow fpathconf(3), pathconf(3), sysconf(3), 
69           and confstr(3) callers to explicitly choose their own errno value.
70         * map.c, map.h: Handle enumeration name change in Mono.Unix.Native
71           (e.g. ConfStr --> ConfstrName, etc.).  This is so that they follow the
72           established naming conventions.
73         * map-icalls.h: Add new icalls.
74         * syslog.c: Added; wraps <syslog.h> functions.
75
76 2005-10-06  Jonathan Pryor  <jonpryor@vt.edu>
77
78         * Makefile.am (MPH_C_SOURCE): Add string.c.
79         * string.c: Added; exports strlen(3) wrapper.
80         * map-icalls.h: Prototype for strlen(3) wrapper.
81
82 2005-09-29  Miguel de Icaza  <miguel@novell.com>
83
84         * support-heap.c: Add meat to the Heap routines. 
85
86 2005-09-20  Jonathan Pryor  <jonpryor@vt.edu>
87
88         * Makefile.am (refresh): Use the make-map.exe in Mono.Unix.Native.
89         * map-icalls.h, map.c, map.h: Update to catch new enums AccessModes, Errno,  
90           and MmapProts.  Huge re-ordering because of namespace change in managed
91           code (not relevant to C API), and make-map.exe now outputs types/members
92           in alphabetical order (to avoid major code churn in the future).
93
94 2005-07-12  Daniel Drake  <dsd@gentoo.org>
95
96         * sys-xattr.c: Use <attr/attr.h> if <sys/xattr.h> does not exist (e.g. for
97         glibc 2.2)
98         * Makefile.am: Link to libattr if libc does not provide the xattr
99         syscalls.
100
101 Thu Jul 7 12:35:20 EDT 2005 Paolo Molaro <lupus@ximian.com>
102
103         *supportw.c, Makefile.am: remove calls and link to libmono/libwapi.
104
105 2005-07-01  Daniel Drake  <dsd@gentoo.org>
106
107         * sys-xattr.c: Support FreeBSD's extattr implementation. Slight API rework
108           to provide transparency between Linux and FreeBSD EA's.
109         * map-icalls.h: Update as above
110
111 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
112
113         * supportw.c: HeapDestroy.
114         * Makefile.am: don't build supportw on windows.
115
116 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
117
118         * Makefile.am: namespace our library.
119
120 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
121
122         * supportw.c:
123         * supportw.h:
124         * Makefile.am: new library intended to provide often P/Invoked windows
125         API functions not present in io-layer.
126
127 2005-06-29  Jonathan Pryor  <jonpryor@vt.edu>
128
129         * map.c: Handle Syslog-related changes (SyslogFacility isn't a 
130           [Flags] enum); make-map.exe changes.
131
132 2005-06-28  Jonathan Pryor  <jonpryor@vt.edu>
133
134         * map.c, map.h: Handle Syslog-related changes (SyslogLevel isn't a [Flags]
135           enum; change in order between LOG_USER and LOG_USRE).
136
137 2005-06-27  Jonathan Pryor  <jonpryor@vt.edu>
138
139         * map.c, map.h: Add corrected spelling of LOG_USER.
140
141 2005-06-13  Miguel de Icaza  <miguel@novell.com>
142
143         *  sys-statvfs.c (copy_statfs): f_flags is the field name on BSD,
144         not f_flag. 
145
146 2005-06-08  Jonathan Pryor  <jonpryor@vt.edu>
147
148         * Makefile.am: Create an unversioned library.  We won't make any gaurantees
149           about ABI stability until Mono 1.2 (if then).
150
151 2005-06-07  Jonathan Pryor  <jonpryor@vt.edu>
152
153         * sys-mman.c: Check for presence of mremap and remap_file_pages.
154
155 2005-06-05  Jonathan Pryor  <jonpryor@vt.edu>
156
157         * map-icalls.h, map.h: Change header comment so it matches what 
158           `make refresh` generates.
159         * map.c: Add <sys/xattr.h> header.
160
161 2005-05-31  Jonathan Pryor  <jonpryor@vt.edu>
162
163         * sys-mman.c: Add wrappers for mmap, munmap, mprotect, msync, mlock,
164           munlock, mremap, mincore, remap_file_pages.
165         * map-icalls.h: Update to latest shared interface.
166         * map.c, map.h: Add {To,From} pairs for MmapFlags, MmapProt, MsyncFlags,
167           MlockallFlags, MremapFlags.
168         * mph.h: Add mph_return_*_if_ssize_t_overflow macros.
169
170 2005-05-31  Jonathan Pryor  <jonpryor@vt.edu>
171
172         * unistd.c: Oops -- deal with s/LockFlags/LockfCommand/ change.
173
174 2005-05-31  Jonathan Pryor  <jonpryor@vt.edu>
175
176         * map.h, map.c, map-icalls.h: Rename LockFlags to LockfCommand.
177
178 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
179
180         * Makefile.am (MPH_C_SOURCE): Add map-icalls.h. Fixes #75012.
181
182 2005-05-18  Jonathan Pryor  <jonpryor@vt.edu>
183
184         * map-icalls.h: Added; auto-generated file which contains Mono_Posix_*
185           declarations for DllImport functions in Mono.Posix.dll.  This ensure
186           consistency between Mono.Posix.dll and MonoPosixHelper.so.
187         * mph.h: Add include for map-icalls.h, to ensure that all MonoPosixHelper
188           exports have correct prototypes.
189         * dirent.c, grp.c, macros.c, pwd.c, signal.c, stdio.c, sys-stat.c, 
190           sys-time.c, utime.c: Correct prototypes to match map-icalls.h.  Alas, this
191           "loses" information -- FILE* becomes void*, etc. -- but no semantics or
192           ABI should be changed (except for Mono_Posix_Syscall_utime).  Some
193           structure names also changed to match the generated names; since the
194           structures are private, this shouldn't break anything.
195         * errno.c: Remove Mono_Posix_Syscall_SetLastError so we don't get a warning
196           about a missing prototype.  This was never in a stable release.
197         * old-map.c: Include mph.h for prototype checking.
198         * unistd.c: SeekFlags conversion is now done in managed code so that a short
199           isn't passed as a parameter; Correct prototypes to match map-icalls.h.
200         * sys-xattr.c: fix lsetxattr/fsetxattr confusion; Correct prototypes to 
201           match map-icalls.h.
202         * sys-sendfile.c: Move mph.h include so that HAVE_SYS_SENDFILE_H is used.
203         * sys-wait.c: Include mph.h so that prototypes are checked.
204
205 2005-05-16  Jonathan Pryor  <jonpryor@vt.edu>
206
207         * sys-statvfs.c: Include "map.h" for Mono_Posix_ToMountFlags prototype.
208         * map.c: Include <sys/statvfs.h> so Mono_Posix_{To,From}MountFlags actually
209           does something useful.
210
211 2005-05-12  Jonathan Pryor  <jonpryor@vt.edu>
212
213         * map.c, map.h: Add FromMountFlags, ToMountFlags.  (MountFlags is used in
214           `struct statvfs', which is POSIX).
215         * sys-statvfs.c: Use ToMountFlags to convert the OS flags value into the
216           managed equivalent.
217
218 2005-05-03  Geoff Norton  <gnorton@customerdna.com>
219
220         * sys-xattr.c:  Mac OS/X Tiger supports xattr but has a different API for supporting
221         resource forks.  Allow mono to build on Tiger.
222
223 2005-04-30  Jonathan Pryor  <jonpryor@vt.edu>
224
225         * stdio.c: Add Mono_Posix_Stdlib_DumpFilePosition, which create a hex string
226           "dump" of a fpos_t.  This is used for Mono.Unix.FilePosition.ToString().
227
228 2005-04-19  Jonathan Pryor  <jonpryor@vt.edu>
229
230         * map.c, map.h: Added XattrFlags values, functions.
231         * sys-xattr.c: Added; <sys/xattr.h> wrapper functions.  Thanks to Daniel
232           Drake for writing these.
233         * Makefile.am: Add sys-xattr.c to the build.
234
235 2005-04-07  Jonathan Pryor  <jonpryor@vt.edu>
236
237         * errno.c: Use the GNU version of strerror_r if _GNU_SOURCE is defined
238           (otherwise assume existence of XPG variant).  This allows proper
239           compilation under Red Hat 9.
240         * fstab.c: protect against users calling setfsent(), setfsent(), ...  
241           endfsent(), which would otherwise leak a FILE handle.
242
243 2005-04-05  Zoltan Varga  <vargaz@freemail.hu>
244
245         * mph.h: Apply patch from the freebsd ports collection.
246
247 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
248
249         * zlib_macros.c (create_z_stream): Explicitly check for older versions
250         of zlib.
251
252 2005-02-08  Zoltan Varga  <vargaz@freemail.hu>
253
254         * pwd.c (Mono_Posix_Syscall_getpwnam_r): Add another part missing from the last patch.
255
256 2005-02-07  Jonathan Pryor  <jonpryor@vt.edu>
257
258         * grp.c: Oops.  Didn't see other Solaris fix in #72292.
259
260 2005-02-07  Jonathan Pryor  <jonpryor@vt.edu>
261
262         * grp.c, pwd.c: Clear errno before calling the actual calls, as errno may
263           have a stale value, leading to spurious errors later.  Fixes #72292.
264
265 2005-02-03  Jonathan Pryor  <jonpryor@vt.edu>
266
267         * Makefile.am (MPH_C_SOURCE): Move errno.c into MPH_C_SOURCE, so it's built
268           on Windows as well as Unix.
269
270 2005-02-03  Jonathan Pryor  <jonpryor@vt.edu>
271
272         * errno.c: Mono_Posix_Syscall_SetLastError should be in Stdlib, not Syscall, 
273           since it's part of ANSI C (and errno will be used from StdioFileStream).  
274           Add Mono_Posix_Stdlib_SetLastError.  Don't remove the Syscall version, as 
275           we don't want to break Mono 1.1.4/svn users the day after release. :-)
276
277 2005-01-25  Jonathan Pryor  <jonpryor@vt.edu>
278
279         * macros.c: Use gint64, not long, to match C# declaration.  Fixes 71152.
280
281 2005-01-23  Geoff Norton  <gnorton@customerdna.com>
282
283         * dirent.c: Include <unistd.h> to bring off_t in on gcc4.0+OSX
284
285 2005-01-13  Jonathan Pryor  <jonpryor@vt.edu>
286
287         * map.h: Correct Mono_Posix_OpenFlags values (they should now match 
288           x86 linux); remove unused enumerations (MountFlags, etc.).
289
290 2005-01-13  Jonathan Pryor  <jonpryor@vt.edu>
291
292         * fstab.c: Fix HPUX support.  HPUX includes both <fstab.h> and
293           <checkpoint.h>, so we need to give preference to <checkpoint.h>.
294
295 2005-01-05  Jonathan Pryor  <jonpryor@vt.edu>
296
297         * fstab.c: Add support for HPUX, which uses <checklist.h>.
298
299 2005-01-05  Jonathan Pryor  <jonpryor@vt.edu>
300
301         * map.c: Continuing my ineptitude...  <sys/wait.h> isn't on Win32.
302         * mph.h: Win32 doesn't define EOVERFLOW, either.  Define it.
303
304 2005-01-05  Jonathan Pryor  <jonpryor@vt.edu>
305
306         * map.c: Include <config.h> so we can check for PLATFORM_WIN32.
307
308 2005-01-05  Jonathan Pryor  <jonpryor@vt.edu>
309
310         * map.c: Fix Win32 build break.  Win32 doesn't have all the sys/* headers.
311
312 2005-01-05  Jonathan Pryor  <jonpryor@vt.edu>
313
314         * serial.c: HPUX compiler fix.
315         * stdlib.c: Add C-defined macro wrappers.
316
317 2005-01-04  Jonathan Pryor  <jonpryor@vt.edu>
318
319         * stdio.c: Add wrapper for C99's snprintf(3).
320
321 2005-01-04  Jonathan Pryor  <jonpryor@vt.edu>
322
323         * Makefile.am: Rewrite.  Remove configure-generated warnings about 
324           multiple _LIBADD and _SOURCES lines.  Add support for Win32.  
325           Win32 support is limited to ANSI C functions.
326         * stdio.c: Don't compile Unix wrappers on Win32.
327
328 2005-01-04  Raja R Harinath  <rharinath@novell.com>
329
330         * Makefile.am (LIBS): Remove.  Was overriding results of configure check.
331         (libMonoPosixHelper_la_LIBADD): List $(GLIB_LIBS) here.
332
333 2005-01-04  Jonathan Pryor  <jonpryor@vt.edu>
334
335         * Makefile.am: Add libnsl to LIBS.  Hopefully this will let sparc link.
336         * mph.h: Make MPH_INTERNAL conditional on __GNUC__.
337
338 2005-01-03  Jonathan Pryor  <jonpryor@vt.edu>
339
340         * signal.c, stdio.c: Remove "function declaration isn't a prototype" warnings.
341         * unistd.c: Check for presence of gethostname and sethostname.
342
343 2005-01-03  Jonathan Pryor  <jonpryor@vt.edu>
344
345         * mph.h, x-struct-str.c: Add "const" to parameters to remove 
346           "warning: passing arg [2|4]...discards qualifiers" message.
347
348 2005-01-03  Jonathan Pryor  <jonpryor@vt.edu>
349
350         * fstab.c: Remove some sparc compiler warnings.
351
352 2005-01-03  Jonathan Pryor  <jonpryor@vt.edu>
353
354         * fstab.c: Solaris doesn't support getfsent(3), but it provides equivalent
355           functionality in getvfsent(3C).  Implement Solaris support.
356
357 2005-01-02  Jonathan Pryor  <jonpryor@vt.edu>
358
359         * stdio.c: More wrapper functions.  I missed a few macros...  This should
360           complete all macro's defined in <stdio.h> for C99.
361
362 2004-12-30  Jonathan Pryor  <jonpryor@vt.edu>
363
364         * stdio.c: More wrapper functions.  This should complete C89's <stdio.h>
365           requirements.
366
367 2004-12-30  Jonathan Pryor  <jonpryor@vt.edu>
368
369         * sys-statvfs.c: Further proving that changing code without compiling is
370           dangerous business...  Compiler fix for OS X.
371
372 2004-12-30  Jonathan Pryor  <jonpryor@vt.edu>
373
374         * signal.c: Mac OS X portability fixes -- it doesn't provide sighandler_t!
375
376 2004-12-30  Jonathan Pryor  <jonpryor@vt.edu>
377
378         * Makefile.am: Add signal.c to the build.
379         * signal.c: Added.  Contains helper functions to wrap signal(2).
380
381 2004-12-30  Jonathan Pryor  <jonpryor@vt.edu>
382
383         * sys-statvfs.c: Fix Mac OS X build (statfs.f_frsize doesn't exist on OSX;
384           f_fsid isn't an integral type; fstatfs needs to use fpathconf).
385
386 2004-12-29  Jonathan Pryor  <jonpryor@vt.edu>
387
388         * unistd.c: Null-terminate the string returned by readlink(2).  This works
389           around a marshaler "issue".
390
391 2004-12-28  Jonathan Pryor  <jonpryor@vt.edu>
392
393         * Makefile.am: Add GLIB_LIBS to the LIBS line, since we require linking
394           against glib-2.0 (to use g_assert()).
395
396 2004-12-28  Jonathan Pryor  <jonpryor@vt.edu>
397
398         * fstab.c: Added; wrap <fstab.h> functions: getfsent(3), getfsfile(3), 
399           getfsspec(3).
400         * map.c: Add new conversion functions for SyslogOptions, SyslogFacility, 
401           SyslogLevel; see syslog(3) for details.
402         * map.h: Add new conversion functions and values for SyslogOptions, 
403           SyslogFacility, SyslogLevel; see syslog(3) for details.
404         * Makefile.am (MPH_SOURCE): add fstab.c, sys-statvfs.c, x-struct-str.c.
405         * mph.h: Document location for Mac OS X man page documentation; add
406           MPH_INTERNAL macro for intra-library function calls (for functions that
407           shouldn't be exported from libMonoPosixHelper.so); declare
408           _mph_copy_structure_strings().
409         * pwd.c: Use _mph_copy_structure_strings() to copy strings embedded within
410           struct passwd.
411         * sys-statvfs.c: Added; wrap <sys/statvfs.h> functions statvfs(2),
412           fstatvfs(2), and (to complicate things) implement (f)statvfs(2) in terms
413           of (f)statfs(2) on Mac OS X (which lacks the -vfs calls).
414         * x-struct-str.c: implements _mph_copy_structure_strings(), which is a
415           generalized interface to copy strings between structures (as is needed in
416           pwd.c and fstab.c).
417
418 Thu Dec 23 14:58:09 EST 2004 Paolo Molaro <lupus@ximian.com>
419
420         * serial.c: remove mono calls from here: they break the build
421         and they don't belong here.
422
423 2004-12-21  Chris Toshok  <toshok@ximian.com>
424
425         * serial.c: initial import of System.IO.Ports pinvoke stuff.
426
427         * Makefile.am (MPH_SOURCE): add serial.c.
428
429 2004-11-30  Jonathan Pryor  <jonpryor@vt.edu>
430
431         * mph.h: Use <glib.h>, not <glib/gtypes.h>, as the HP/UX compiler needs
432           <glib/gutils.h> to handle the `inline' keyword.
433
434 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
435
436         * Makefile.am (MPH_SOURCE): Add macros.c for compatibility with
437         the old API (currently the old API would fail).
438
439 2004-11-25  Raja R Harinath  <rharinath@novell.com>
440
441         * Makefile.am (MPH_SOURCE): Distribute old-map.h and map.h.
442
443 2004-11-18  Jonathan Pryor  <jonpryor@vt.edu>
444
445         * stdio.c: Add fread(3) and fwrite(3) wrappers.
446
447 2004-11-16  Jonathan Pryor  <jonpryor@vt.edu>
448
449         * Makefile.am: Remove sys-mount.c from the build.
450         * sys-mount.c: Delete.  We're not exporting mount-related functionality
451           anymore.  It's not remotely portable, and trying to make it portable is a
452           doomed idea.
453         * map.c: Remove mount- and umount-related conversion functions.
454
455 2004-11-14  Geoff Norton  <gnorton@customerdna.com>
456         
457         * mph.h:  Revernt jonp's removal of MPH_ON_BSD define as sys-mount.c
458         and unistd.c still check this configuration value.  This allows mono
459         to build on *BSD again.
460
461 2004-11-12  Jonathan Pryor <jonpryor@vt.edu>
462
463         * dirent.c: Only access members which exist on the target
464           platform.
465         * errno.c: Only export strerror_r if it's available.
466         * mph.h: Remove MPH_ON_BSD; use the configure checks instead.
467         * sys-mman.c: Only export posix_madvise if it's available.
468         * unistd.c: Only export sethostid if it's available.
469
470 2004-11-08  Jonathan Pryor <jonpryor@vt.edu>
471
472         * Makefile.am: Add sys-sendfile.c to the build.
473         * dirent.c, fcntl.c, unistd.c: Remove
474           compile-time checks for -64 apis (pread64, etc.), as they're
475           superfluous.  GLibc #defines the functions to the appropriate
476           -64 counterpart when necessary, and Darwin is intrinsically
477           large-file-aware, so manual checking on my part is redundant and
478           unnecessary.
479         * grp.c: Add checks for non-portable functions getgrnam_r,
480           getgrgid_r.
481         * pwd.c: Add checks for non-portable functions getpwnam_r,
482           getpwuid_r.
483         * map.c: Remove <poll.h> include.  Building on Tiger (Mac
484           OS X 10.4 beta) breaks when both <poll.h> and <sys/poll.h> are
485           included, so only use <sys/poll.h>.
486         * mph.h: Clean up macro handling for type overflow checking.
487
488 2004-11-05  Jonathan Pryor <jonpryor@vt.edu>
489
490         * .cvsignore: Ignore generated files.
491         * Makefile.am: Add new INCLUDE directives (for glib
492           headers), source; bump library version (so we don't clobber
493           previous versions of libMonoPosixHelper.so).
494         * dirent.c: New file; <dirent.h> wrapper functions; 
495           BSD portability fixes.
496         * errno.c: New file; <errno.h> wrapper functions
497         * fcntl.c: New file; <fcntl.h> wrapper functions;
498           BSD portability fixes.
499         * grp.c: New file; <grp.h> wrapper functions;
500           BSD portability fixes.
501         * map.c: Updated macro mapping functions (more enums
502           mapped, more error checking, etc.).
503         * map.h: Updated macro mapping functions
504         * old-map.c: Previous map.c implementation, for backward
505           compatibility Remove spurious warning about redefining
506           _GNU_SOURCE.
507         * old-map.h: Previous map.h implementation, for backward
508         compatibility
509         * mph.h: New file; Utility types, macros;
510           BSD portability fixes.
511         * pwd.c: New file; <pwd.h> wrapper functions;
512           BSD portability fixes.
513         * stdio.c: New file; <stdio.h> wrapper functions
514         * stdlib.c: New file; <stdlib.h> wrapper functions
515         * sys-mman.c: New file; <sys/mman.h> wrapper functions
516         * sys-mount.c: New file; <sys/mount.h> wrapper functions;
517           BSD portability fixes.
518         * sys-sendfile.c: New file; <sys/sendfile.h> wrapper
519           functions; BSD portability fixes.
520         * sys-stat.c: New file; <sys/stat.h> wrapper functions
521         * sys-wait.c: New file; <sys/wait.h> wrapper functions
522         * time.c: New file; <time.h> wrapper functions;
523           BSD portability fixes.
524         * unistd.c: New file; <unistd.h> wrapper functions;
525           BSD portability fixes.
526