]> git.sur5r.net Git - cc65/blobdiff - src/cc65/declattr.h
Allow any number of optional braces around all initializers as required by the standard
[cc65] / src / cc65 / declattr.h
index 9975b40d114f978ddc7e72b76d00ae4c4a434862..cef08b30f5661e535871702c5dc04c8b4f215c54 100644 (file)
@@ -6,10 +6,10 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2000     Ullrich von Bassewitz                                        */
-/*              Wacholderweg 14                                              */
-/*              D-70597 Stuttgart                                            */
-/* EMail:       uz@musoftware.de                                             */
+/* (C) 2000-2002 Ullrich von Bassewitz                                       */
+/*               Wacholderweg 14                                             */
+/*               D-70597 Stuttgart                                           */
+/* EMail:        uz@musoftware.de                                            */
 /*                                                                           */
 /*                                                                           */
 /* This software is provided 'as-is', without any expressed or implied       */
@@ -52,6 +52,8 @@
 typedef enum {
     atNone     = -1,           /* No attribute */
     atAlias,                   /* Alias declaration */
+    atUnused,                  /* Variable is unused */
+    atZeroPage,                        /* Zero page symbol */
 
     atCount                    /* Number of attributes */
 } attrib_t;