File: syslibs.h

package info (click to toggle)
mgetty 1.1.14-2
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 3,840 kB
  • ctags: 3,048
  • sloc: ansic: 31,236; sh: 3,517; perl: 3,400; makefile: 1,010; tcl: 639; lisp: 283
file content (16 lines) | stat: -rw-r--r-- 367 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ident "$Id: syslibs.h,v 4.1 1997/01/12 14:53:46 gert Exp $ Copyright (c) Gert Doering"

/* Include stdlib.h / malloc.h, depending on the O/S
 */

#ifndef _NOSTDLIB_H
#include <stdlib.h>
#endif

#if !defined( __bsdi__ ) && !defined(__FreeBSD__) && !defined(NeXT)
#include <malloc.h>
#endif

#ifdef NEXTSGTTY		/* NeXT, not POSIX subsystem */
# include <libc.h>
#endif