diff options
author | H. Peter Anvin <hpa@zytor.com> | 2005-01-15 22:15:51 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2005-01-15 22:15:51 +0000 |
commit | e2c80181b6a6338f0381fc9c44fae32d8b8a20fc (patch) | |
tree | f9919ba3c0489d886c9a79e73257ef6a4584aafc /rdoff/symtab.h | |
parent | 5180bc8a598aa5bff7bfb3726771e5bf348e61a2 (diff) | |
download | nasm-e2c80181b6a6338f0381fc9c44fae32d8b8a20fc.tar.gz nasm-e2c80181b6a6338f0381fc9c44fae32d8b8a20fc.tar.bz2 nasm-e2c80181b6a6338f0381fc9c44fae32d8b8a20fc.zip |
Apply Nindent to all .c and .h files
Diffstat (limited to 'rdoff/symtab.h')
-rw-r--r-- | rdoff/symtab.h | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/rdoff/symtab.h b/rdoff/symtab.h index c1fe031..5bd9bcb 100644 --- a/rdoff/symtab.h +++ b/rdoff/symtab.h @@ -7,16 +7,14 @@ */ typedef struct { - char *name; - int segment; - long offset; - long flags; + char *name; + int segment; + long offset; + long flags; } symtabEnt; void *symtabNew(void); void symtabDone(void *symtab); -void symtabInsert(void *symtab,symtabEnt *ent); -symtabEnt *symtabFind(void *symtab,const char *name); -void symtabDump(void *symtab,FILE *of); - - +void symtabInsert(void *symtab, symtabEnt * ent); +symtabEnt *symtabFind(void *symtab, const char *name); +void symtabDump(void *symtab, FILE * of); |