Skip to content

Commit ac380d4

Browse files
authored
Update storage-class-specifiers-for-external-level-declarations.md (#4571)
fix missing other() function
1 parent e66b591 commit ac380d4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

docs/c-language/storage-class-specifiers-for-external-level-declarations.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ The example below illustrates external declarations:
5151
#include <stdio.h>
5252

5353
extern int i; // Reference to i, defined below
54+
extern void other ( void ); // Reference to other(), defined in second source file
5455
void next( void ); // Function prototype
5556

5657
int main()

0 commit comments

Comments
 (0)