Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. --- c-grammar.scm.orig 2019-10-04 00:07:42.000000000 +0900
  2. +++ c-grammar.scm 2019-10-03 22:17:39.000000000 +0900
  3. @@ -19,7 +19,7 @@
  4. XOR_ASSIGN OR_ASSIGN TYPENAME
  5.  
  6. TYPEDEF EXTERN STATIC AUTO REGISTER INLINE RESTRICT
  7. - SIGNED UNSIGNED CONST VOLATILE
  8. + SIGNED UNSIGNED CONST VOLATILE NULLABLE NONNULL
  9. STRUCT UNION ENUM ELLIPSIS RANGE
  10.  
  11. CASE DEFAULT IF ELSE SWITCH WHILE DO FOR GOTO CONTINUE BREAK RETURN
  12. @@ -113,6 +113,8 @@
  13. (RESTRICT) : '()
  14. (TYPENAME objc_non_empty_protocol_references) : (%TYPENAME $1)
  15. (objc_non_empty_protocol_references) : '(id)
  16. + (NULLABLE) : '()
  17. + (NONNULL) : '()
  18. )
  19.  
  20. (primary_expr
  21. @@ -549,6 +551,8 @@
  22. (CONST)
  23. (VOLATILE)
  24. (RESTRICT)
  25. + (NULLABLE)
  26. + (NONNULL)
  27. )
  28.  
  29. (array_qualifier
  30. @@ -556,6 +560,8 @@
  31. (RESTRICT)
  32. (CONST)
  33. (VOLATILE)
  34. + (NULLABLE)
  35. + (NONNULL)
  36. )
  37.  
  38. (array_qualifier_list
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement