diff --git a/home/-shrc b/home/-shrc index 94b4086..9d3e3fd 100644 --- a/home/-shrc +++ b/home/-shrc @@ -88,6 +88,7 @@ whoa=( -Wall -Wextra -Werror=implicit-function-declaration + -Werror=uninitialized -Winline -Wshadow diff --git a/vim/after/syntax/c.vim b/vim/after/syntax/c.vim index 2effd5b..77b7292 100644 --- a/vim/after/syntax/c.vim +++ b/vim/after/syntax/c.vim @@ -1,3 +1,5 @@ syn keyword cType uchar ushort uint ulong syn keyword cType u8 u16 u32 u64 syn keyword cType s8 s16 s32 s64 +syn keyword cType i8 i16 i32 i64 +syn keyword cType f32 f64