b5f7a260c2fb13fc05ddacda0e6003ab4e938432 angie Fri Jun 1 11:37:10 2012 -0700 options.h depends on common.h because it uses boolean. diff --git src/inc/options.h src/inc/options.h index c26c8e6..58601e0 100644 --- src/inc/options.h +++ src/inc/options.h @@ -1,23 +1,25 @@ /* Stuff to process options out of command line. * * This file is copyright 2002 Jim Kent, but license is hereby * granted for all use - public, private or commercial. */ #ifndef OPTIONS_H #define OPTIONS_H +#include "common.h" + /* Types for options */ #define OPTION_BOOLEAN 0x01 #define OPTION_STRING 0x02 #define OPTION_INT 0x04 #define OPTION_FLOAT 0x10 #define OPTION_LONG_LONG 0x20 #define OPTION_MULTI 0x40 #define OPTION_DOUBLE 0x80 /* Mask for option types (excluding OPTION_MULTI) */ #define OPTION_TYPE_MASK (OPTION_BOOLEAN|OPTION_STRING|OPTION_INT|OPTION_FLOAT|OPTION_LONG_LONG|OPTION_DOUBLE) struct optionSpec /* Specification of a single option. An array of these are passed * to optionInit() to validate options. */