* as/z80/z80mch.c: fixed bug #1704376: missing as-z80 errors
[fw/sdcc] / src / SDCCargs.h
index dc8c3ff5a64fdb356a4d612611d37352a45282a3..5a143d6ffa8786e35a4e37655f021488bdf684bd 100644 (file)
 
 /** Definition of the structures used by the options parser.  The port
     may implement one of these for any options it wants parsed
-    automatically. 
+    automatically.
 */
 #ifndef SDCCARGS_H
 #define SDCCARGS_H
 
 /** Specifies option argument types.  */
 enum cl_opt_arg_type {
-  /*  */
-  CLAT_BOOLEAN,
+  CLAT_BOOLEAN = 0, /* has to be zero! */
   CLAT_INTEGER,
   CLAT_STRING,
-  CLAT_SET
+  CLAT_SET,
+  CLAT_ADD_SET
 };
 
 /** Table of all options supported by all ports.