mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
11 lines
281 B
C
11 lines
281 B
C
|
|
extern void *f1 (void *px, const void *py, int ii)
|
|
__attribute__((nonnull (1, 2)));
|
|
|
|
extern void *f2 (void *px, const void *py, int ii)
|
|
__attribute__((nonnull ()));
|
|
|
|
extern void *f3 (void *px, const void *py, int ii)
|
|
__attribute__((nonnull));
|
|
|