C++: add deptrace pr-checks

This commit is contained in:
Paolo Tranquilli
2023-10-23 10:51:37 +02:00
parent a291b7c6a3
commit d53a59d051
6 changed files with 271 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
#!/bin/bash
errno || true # just a command to check its autoinstallation by deptrace
gcc -o main main.c

View File

@@ -0,0 +1,8 @@
#include "stdio.h"
int main(int argc, char **argv) {
if (1) {
printf("Hello, World!\n");
}
}