From: John Kohl Date: Fri, 19 Jan 1990 17:04:20 +0000 (+0000) Subject: add defs for TRUE and FALSE X-Git-Tag: krb5-1.0-alpha2~1238 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=13712cd90d04af3ce1fb5a3fe9d85e1ffb52a1db;p=krb5.git add defs for TRUE and FALSE git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@145 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/include/krb5/base-defs.h b/src/include/krb5/base-defs.h index eb20e58cc..e1e038f56 100644 --- a/src/include/krb5/base-defs.h +++ b/src/include/krb5/base-defs.h @@ -23,6 +23,12 @@ typedef krb5_int16 krb5_ui_2; typedef krb5_int32 krb5_ui_4; typedef krb5_octet krb5_boolean; +#ifndef FALSE +#define FALSE 0 +#endif +#ifndef TRUE +#define TRUE 1 +#endif typedef krb5_int32 krb5_timestamp; typedef krb5_ui_2 krb5_confounder;