We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b2c9c5 commit 0467995Copy full SHA for 0467995
cpp/ql/src/semmle/code/cpp/commons/unix/Constants.qll
@@ -89,8 +89,8 @@ int o_wronly() { result = parseOctal("01") }
89
/** Gets the number corresponding to the read-and-write file access mode. */
90
int o_rdwr() { result = parseOctal("02") }
91
92
-/** Gets the number corresponding to the file creation flag O_CREAT. */
+/** Gets the number corresponding to the file creation flag O_CREAT on Linux. */
93
int o_creat() { result = parseOctal("0100") }
94
95
-/** Gets the number corresponding to the file creation flag O_EXCL. */
+/** Gets the number corresponding to the file creation flag O_EXCL on Linux. */
96
int o_excl() { result = parseOctal("0200") }
0 commit comments