Skip to content

Commit 2670f30

Browse files
committed
Quote "NULL" string values in YAML
1 parent ec523e8 commit 2670f30

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

libc/include/locale.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
header: locale.h
22
header_template: locale.h.def
33
macros:
4-
- macro_name: NULL
4+
- macro_name: "NULL"
55
macro_header: null-macro.h
66
types:
77
- type_name: locale_t

libc/include/stdio.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
header: stdio.h
22
header_template: stdio.h.def
33
macros:
4-
- macro_name: NULL
4+
- macro_name: "NULL"
55
macro_header: null-macro.h
66
- macro_name: stdout
77
macro_value: stdout

libc/include/stdlib.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ standards:
55
merge_yaml_files:
66
- stdlib-malloc.yaml
77
macros:
8-
- macro_name: NULL
8+
- macro_name: "NULL"
99
macro_header: null-macro.h
1010
types:
1111
- type_name: __atexithandler_t

libc/include/string.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ header: string.h
22
standards:
33
- stdc
44
macros:
5-
- macro_name: NULL
5+
- macro_name: "NULL"
66
macro_header: null-macro.h
77
types:
88
- type_name: locale_t

libc/include/time.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
header: time.h
22
header_template: time.h.def
33
macros:
4-
- macro_name: NULL
4+
- macro_name: "NULL"
55
macro_header: null-macro.h
66
types:
77
- type_name: struct_timeval

libc/include/wchar.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
header: wchar.h
22
header_template: wchar.h.def
33
macros:
4-
- macro_name: NULL
4+
- macro_name: "NULL"
55
macro_header: null-macro.h
66
types:
77
- type_name: FILE
@@ -188,8 +188,8 @@ functions:
188188
standards:
189189
- stdc
190190
return_type: wchar_t *
191-
arguments:
192-
- type: wchar_t *__restrict
191+
arguments:
192+
- type: wchar_t *__restrict
193193
- type: const wchar_t *__restrict
194194
- type: size_t
195195
- name: wmemmove
@@ -212,7 +212,7 @@ functions:
212212
standards:
213213
- stdc
214214
return_type: wchar_t *
215-
arguments:
215+
arguments:
216216
- type: wchar_t *__restrict
217217
- type: const wchar_t *__restrict
218218
- name: wcslcat

0 commit comments

Comments
 (0)