summaryrefslogtreecommitdiff
path: root/include/null.h
blob: 58bda4365100c09d94b5ae1051dbd01eeb6a6e97 (plain)
1
2
3
4
5
6
7
8
9
/*	$NetBSD: null.h,v 1.1 1999/12/22 21:26:17 kleink Exp $	*/

#ifndef	NULL
#if !defined(__GNUG__) || __GNUG__ < 2 || (__GNUG__ == 2 && __GNUC_MINOR__ < 90)
#define	NULL	0
#else
#define	NULL	__null
#endif
#endif