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