...
In this compliant solution the length of the identifier declaring the function pointer bash_groupname_completion()
in bashline.h
is less than 31 32 characters.
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; |
...