diff options
Diffstat (limited to 'rpmio/rpmmacro.h')
-rw-r--r-- | rpmio/rpmmacro.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rpmio/rpmmacro.h b/rpmio/rpmmacro.h index 02ea6f2e0..9642e556f 100644 --- a/rpmio/rpmmacro.h +++ b/rpmio/rpmmacro.h @@ -1,7 +1,7 @@ #ifndef _H_MACRO_ #define _H_MACRO_ -typedef struct MacroEntry { +typedef /*@abstract@*/ struct MacroEntry { struct MacroEntry *prev; const char *name; /* Macro name */ const char *opts; /* Macro parameters (ala getopt) */ @@ -10,7 +10,7 @@ typedef struct MacroEntry { int level; } MacroEntry; -typedef struct MacroContext { +typedef /*@abstract@*/ struct MacroContext { MacroEntry ** macroTable; int macrosAllocated; int firstFree; |