Replace 8 and 16 bit custom types by stdint.h types

Signed-off-by: Antonio Niño Díaz <antonio_nd@outlook.com>
This commit is contained in:
Antonio Niño Díaz
2017-12-31 13:46:52 +01:00
parent c24cab6d1d
commit 13c0684497
20 changed files with 75 additions and 59 deletions

View File

@@ -3,6 +3,7 @@
*/
#include <assert.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <time.h>
@@ -814,7 +815,7 @@ sym_AddMacro(char *tzSym)
/*
* Set whether to export all relocable symbols by default
*/
void sym_SetExportAll(BBOOL set) {
void sym_SetExportAll(uint8_t set) {
exportall = set;
}