You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pwndbg/tests/binaries/qemu_user/reference-binary.riscv64.c

11 lines
178 B
C

#include <stdio.h>
int main(int argc, char const* argv[]) {
if (argc > 1) {
puts("Enough args");
} else {
puts("Not enough args");
}
return 0;
}