e25a084f1bf6ca7f534ed968c8ad0318631dca34
angie
  Wed Apr 25 15:42:47 2012 -0700
options.h was missing its #define OPTIONS_H -- apparently my codewas the first so far to have multiple includes of options.h. :)

diff --git src/inc/options.h src/inc/options.h
index a3e4004..c26c8e6 100644
--- src/inc/options.h
+++ src/inc/options.h
@@ -1,21 +1,22 @@
 /* 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
 
 /* 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