* xm-i386mach.h: add decls for errno and strdup().

This commit is contained in:
Stu Grossman 1992-04-08 05:37:32 +00:00
parent fa128a27ab
commit 5661980309
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
Tue Apr 7 16:34:07 1992 Per Bothner (bothner@cygnus.com)
* xm-i386mach.h: add decl for errno.
* xm-i386mach.h: add decls for errno and strdup().
* breakpoint.c (breakpoint_1): Add (int) casts for enums
used in array index context (otherwise, some compilers barf).

View File

@ -45,3 +45,5 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
/* <errno.h> only defines this if __STDC__!!! */
extern int errno;
extern char *strdup();