Fix CI
This commit is contained in:
parent
acff0e5c39
commit
6f175e0b9b
@ -1,11 +1,12 @@
|
||||
// This is a small executable that prints its first argument and exits with the exit status in its second argument
|
||||
|
||||
#include <iostream>
|
||||
#include <cstdlib>
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
if (argc != 3) {
|
||||
std::cerr << "Wrong number of arguments" << std::endl;
|
||||
abort();
|
||||
std::abort();
|
||||
}
|
||||
|
||||
std::cout << argv[1];
|
||||
|
Loading…
x
Reference in New Issue
Block a user