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