OSDN Git Service

2013.10.24
[uclinux-h8/uClinux-dist.git] / user / mgetty / syslibs.h
1 #ident "$Id: syslibs.h,v 4.3 2001/12/17 21:53:32 gert Exp $ Copyright (c) Gert Doering"
2
3 /* Include stdlib.h / malloc.h, depending on the O/S
4  */
5
6 #ifndef _NOSTDLIB_H
7 #include <stdlib.h>
8 #endif
9
10 #if !defined( __bsdi__ ) && !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(NeXT) && !defined(__MACH__)
11 #include <malloc.h>
12 #endif
13
14 #ifdef NEXTSGTTY                /* NeXT, not POSIX subsystem */
15 # include <libc.h>
16 #endif