diff options
Diffstat (limited to 'Tests/SimpleInstall/foo.c')
-rw-r--r-- | Tests/SimpleInstall/foo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/SimpleInstall/foo.c b/Tests/SimpleInstall/foo.c index 5c7c3e6..45d5b2b 100644 --- a/Tests/SimpleInstall/foo.c +++ b/Tests/SimpleInstall/foo.c @@ -1,6 +1,6 @@ char* foo = "Foo"; -int SomeFunctionInFoo(int i) +int SomeFunctionInFoo() { - return i + 5; + return 5; } |