diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1995-12-05 21:03:13 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1995-12-05 21:03:13 +0000 |
| commit | 466b676ad5b8afb41f800cc7277c79bac2961856 (patch) | |
| tree | 4cd317ccb7e7915f58255382e03b7bb98eeab5ad | |
| parent | 0ff89d5b0340cda09b725c3900d40628215a1a5f (diff) | |
Notes
| -rw-r--r-- | sys/sys/param.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/sys/param.h b/sys/sys/param.h index f2afd159d46f..8eafd167cad7 100644 --- a/sys/sys/param.h +++ b/sys/sys/param.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)param.h 8.2 (Berkeley) 1/21/94 - * $Id: param.h,v 1.8 1995/05/14 03:00:05 davidg Exp $ + * $Id: param.h,v 1.9 1995/10/06 09:56:26 phk Exp $ */ #ifndef _SYS_PARAM_H_ @@ -82,6 +82,9 @@ #include <sys/ucred.h> #include <sys/uio.h> #include <sys/rtprio.h> + +#define FALSE 0 +#define TRUE 1 #endif /* Signals. */ |
