diff options
| author | grischka <grischka> | 2016-05-05 20:04:00 +0200 |
|---|---|---|
| committer | grischka <grischka> | 2016-05-05 20:04:00 +0200 |
| commit | d48662d49650099e5ab9e1fe218311a18c2ff73a (patch) | |
| tree | 4af92eb69304fdef3e48c6ddb1a8972df80f0855 /elf.h | |
| parent | fe845cf53da206bb28f6b49a0878b0118b4f242b (diff) | |
| download | tinycc-d48662d49650099e5ab9e1fe218311a18c2ff73a.tar.gz tinycc-d48662d49650099e5ab9e1fe218311a18c2ff73a.tar.bz2 | |
tccgen: scopes levels for local symbols (update 1)
Catch top level redeclarations too.
Also fix mistakes in tcctest.c and the tcc sources (win32)
showing up now.
Diffstat (limited to 'elf.h')
| -rw-r--r-- | elf.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -28,13 +28,12 @@ typedef signed char int8_t; typedef short int int16_t; typedef int int32_t; typedef long long int int64_t; -#endif - typedef unsigned char uint8_t; typedef unsigned short int uint16_t; typedef unsigned int uint32_t; typedef unsigned long long int uint64_t; #endif +#endif /* Standard ELF types. */ |
