aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/233 wrap case/prog.c
blob: 5183deabdb81405f7ff7417e1f857cd9a5c5de36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include<up_down.h>
#include<stdio.h>

int main(int argc, char **argv) {
    if(argc == 42) {
        printf("Very sneaky, %s\n", argv[0]);
    }
#ifdef UP_IS_DOWN
    return 0;
#else
    return 1;
#endif
}