scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 7e1907d5b237b7bf2b740beeeb727bf3a7b91c90
parent 48cb441384ff77a4e40bfafe24948ecc5b099252
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sun,  1 Mar 2015 21:48:50 +0000

Change stdint to inttypes in cc1

This change shod be done in previous commits, but I am not
sure why it appears again, so kill them again.

Diffstat:
Mcc1/decl.c | 2+-
Mcc1/error.c | 2+-
Mcc1/lex.c | 2+-
Mcc1/main.c | 2+-
Mcc1/symbol.c | 3+--
5 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/cc1/decl.c b/cc1/decl.c @@ -1,6 +1,6 @@ #include <assert.h> #include <stddef.h> -#include <stdint.h> +#include <inttypes.h> #include <string.h> #include "../inc/sizes.h" diff --git a/cc1/error.c b/cc1/error.c @@ -1,7 +1,7 @@ #include <stdarg.h> #include <stdlib.h> -#include <stdint.h> +#include <inttypes.h> #include <stdio.h> #include "../inc/cc.h" diff --git a/cc1/lex.c b/cc1/lex.c @@ -1,5 +1,5 @@ -#include <stdint.h> +#include <inttypes.h> #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/cc1/main.c b/cc1/main.c @@ -1,5 +1,5 @@ -#include <stdint.h> +#include <inttypes.h> #include <stdio.h> #include "../inc/cc.h" diff --git a/cc1/symbol.c b/cc1/symbol.c @@ -1,6 +1,5 @@ -#include <stdint.h> -#include <stdint.h> +#include <inttypes.h> #include <stdlib.h> #include <string.h>