File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 1
1
" Vim syntax file
2
2
" Language: C
3
3
" Maintainer: Bram Moolenaar <Bram@vim.org>
4
- " Last Change: 2016 Feb 08
4
+ " Last Change: 2016 Apr 10
5
5
6
6
" Quit when a (custom) syntax file was already loaded
7
7
if exists (" b:current_syntax" )
@@ -248,6 +248,10 @@ if !exists("c_no_c99") " ISO C99
248
248
syn keyword cType _Bool bool _Complex complex _Imaginary imaginary
249
249
syn keyword cType int8_t int16_t int32_t int64_t
250
250
syn keyword cType uint8_t uint16_t uint32_t uint64_t
251
+ if ! exists (" c_no_bsd" )
252
+ " These are BSD specific.
253
+ syn keyword cType u_int8_t u_int16_t u_int32_t u_int64_t
254
+ endif
251
255
syn keyword cType int_least8_t int_least16_t int_least32_t int_least64_t
252
256
syn keyword cType uint_least8_t uint_least16_t uint_least32_t uint_least64_t
253
257
syn keyword cType int_fast8_t int_fast16_t int_fast32_t int_fast64_t
You can’t perform that action at this time.
0 commit comments