X-Git-Url: https://git.hcoop.net/bpt/coccinelle.git/blobdiff_plain/e6509c05b4c77bb8fcffa7f454c1412fcc0c3a15..1eddfd5052863e93b723b26a1d1266471882f234:/parsing_cocci/type_cocci.ml diff --git a/parsing_cocci/type_cocci.ml b/parsing_cocci/type_cocci.ml index 95cc325..a7c1e3b 100644 --- a/parsing_cocci/type_cocci.ml +++ b/parsing_cocci/type_cocci.ml @@ -51,6 +51,7 @@ and tagged_string = string and baseType = VoidType | CharType | ShortType | IntType | DoubleType | FloatType | LongType | LongLongType | BoolType +| SizeType | SSizeType | PtrDiffType and structUnion = Struct | Union @@ -101,6 +102,10 @@ and baseType = function | LongType -> "long " | LongLongType -> "long long " | BoolType -> "bool " + | SizeType -> "size_t " + | SSizeType -> "ssize_t " + | PtrDiffType -> "ptrdiff_t " + and structUnion = function Struct -> "struct "