Skip to content

Commit ac74fc0

Browse files
committed
Declarations1: fix cert help files
1 parent 4b09e60 commit ac74fc0

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

c/cert/src/rules/DCL31-C/DeclareIdentifiersBeforeUsingThem.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ This query implements the CERT-C rule DCL31-C:
55
> Declare identifiers before using them
66
77

8-
98
## Description
109

1110
The C11 Standard requires type specifiers and forbids implicit function declarations. The C90 Standard allows implicit typing of variables and functions. Consequently, some existing legacy code uses implicit typing. Some C compilers still support legacy code by allowing implicit typing, but it should not be used for new code. Such an [implementation](https://wiki.sei.cmu.edu/confluence/display/c/BB.+Definitions#BB.Definitions-implementation) may choose to assume an implicit declaration and continue translation to support existing programs that used this feature.

c/cert/src/rules/DCL37-C/DoNotDeclareOrDefineAReservedIdentifier.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ This query implements the CERT-C rule DCL37-C:
55
> Do not declare or define a reserved identifier
66
77

8-
98
## Description
109

1110
According to the C Standard, 7.1.3 \[[ISO/IEC 9899:2011](https://wiki.sei.cmu.edu/confluence/display/c/AA.+Bibliography#AA.Bibliography-ISO-IEC9899-2011)\],

0 commit comments

Comments
 (0)