guard against missing defs of TRUE/FALSE

This commit is contained in:
Per Allansson 2015-08-31 20:15:01 +02:00
parent df25781578
commit 4ef0e54438

View File

@ -116,6 +116,14 @@ static const char *rcsid = "$Id: osslsigncode.c,v 1.7.1 2014/07/11 14:14:14 mfiv
#endif
#ifndef FALSE
#define FALSE 0
#endif
#ifndef TRUE
#define TRUE 1
#endif
#if defined (HAVE_TERMIOS_H) || defined (HAVE_GETPASS)
#define PROVIDE_ASKPASS 1
#endif