diff options
Diffstat (limited to 'test/CodeGen/builtins.c')
-rw-r--r-- | test/CodeGen/builtins.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/CodeGen/builtins.c b/test/CodeGen/builtins.c index 165db9c..ac59b27 100644 --- a/test/CodeGen/builtins.c +++ b/test/CodeGen/builtins.c @@ -2,7 +2,6 @@ // RUN: not grep __builtin %t #include <stdio.h> -#include <math.h> void p(char *str, int x) { printf("%s: %d\n", str, x); @@ -118,7 +117,7 @@ int main() { -void strcat() {} +char *strcat(char *a, char const *b) {} void foo() { __builtin_strcat(0, 0); |