diff options
Diffstat (limited to 'Modules/CheckVariableExists.c')
-rw-r--r-- | Modules/CheckVariableExists.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Modules/CheckVariableExists.c b/Modules/CheckVariableExists.c index 419c1b0..752f6e4 100644 --- a/Modules/CheckVariableExists.c +++ b/Modules/CheckVariableExists.c @@ -9,10 +9,8 @@ int main(){ #else int main(int ac, char*av[]){ #endif - int* p; - p = &CHECK_VARIABLE_EXISTS; if(ac > 1000){return *av[0];} - return 0; + return CHECK_VARIABLE_EXISTS; } #else /* CHECK_VARIABLE_EXISTS */ |