diff options
Diffstat (limited to 'ctoclean/call.c')
-rw-r--r-- | ctoclean/call.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/ctoclean/call.c b/ctoclean/call.c index be5fe48..1d70d68 100644 --- a/ctoclean/call.c +++ b/ctoclean/call.c @@ -1,10 +1,8 @@ -#include <inttypes.h> -#include <stdio.h> +#include <stdint.h> -extern int64_t square(int64_t); +extern int64_t clean_square(int64_t); int64_t call_square(int64_t); int64_t call_square(int64_t x) { - return square(x); + return clean_square(x); } - |