...
Code Block |
---|
|
/* In bash/bashline.h */
extern char* bash_groupname_completion(const char*, int);
/* In a.c */
#include <bashline.h>
void f(const char *s, int i) {
bash_groupname_completion(s, i);
}
/* In b.c */
int bash_groupname_completion_func; |
Exceptions
Anchor |
DCL40-EX1
DCL40-EX1 | DCL40-EX1EX0: No diagnostic need be issued if a declaration that is incompatible with the definition occurs in a translation unit that does not contain any definition or uses of the function or object other than possibly additional declarations. This code is not in compliance with
MSC12-C. Detect and remove code that has no effect or
MSC13-C. Detect and remove unused values, but it does not cause undefined behavior.
...