Remove building with NOCRYPTO option
[minix.git] / tests / usr.bin / xlint / lint1 / d_c99_decls_after_stmt2.c
blob960d392350ca9bf543a34856c20997e20c8c926e
1 typedef int int_t;
2 int main(void) {
3 int i = 0; i += 1;
4 int_t j = 0; j += 1;
5 return 0;