mirror of
https://github.com/github/codeql.git
synced 2026-01-01 08:42:06 +01:00
This cleans up the test results, which were confusing because functions like `sink` had multiple locations. There are some additional results now involving casts to `const char *` because previously it varied whether `sink` used `const`, and now it always does.
15 lines
453 B
C
15 lines
453 B
C
// Common declarations in this test dir should go in this file. Otherwise, some
|
|
// declarations will have multiple locations, which leads to confusing test
|
|
// output.
|
|
|
|
void sink(const char *sinkparam);
|
|
void sink(int sinkparam);
|
|
|
|
int atoi(const char *nptr);
|
|
char *getenv(const char *name);
|
|
char *strcat(char * s1, const char * s2);
|
|
|
|
char *strdup(const char *string);
|
|
char *_strdup(const char *string);
|
|
char *unmodeled_function(const char *const_string);
|