diff options
Diffstat (limited to '')
| -rw-r--r-- | opt/resources/can-remove-stdbool.c | 12 | ||||
| -rw-r--r-- | opt/resources/can-remove-stdbool.c.expected | 9 | ||||
| -rw-r--r-- | opt/resources/nothing-can-be-removed.c | 7 | ||||
| -rw-r--r-- | opt/resources/nothing-can-be-removed.c.expected | 7 |
4 files changed, 35 insertions, 0 deletions
diff --git a/opt/resources/can-remove-stdbool.c b/opt/resources/can-remove-stdbool.c new file mode 100644 index 00000000..98338de6 --- /dev/null +++ b/opt/resources/can-remove-stdbool.c @@ -0,0 +1,12 @@ +#include <stdbool.h> + +#include <stdio.h> +#include <stdbool.h> + +#include <stdio.h> + +int +main(void) { + printf("Nothing to be removed.\n"); + return 0; +} diff --git a/opt/resources/can-remove-stdbool.c.expected b/opt/resources/can-remove-stdbool.c.expected new file mode 100644 index 00000000..f3da0d30 --- /dev/null +++ b/opt/resources/can-remove-stdbool.c.expected @@ -0,0 +1,9 @@ + + +#include <stdio.h> + +int +main(void) { + printf("Nothing to be removed.\n"); + return 0; +} diff --git a/opt/resources/nothing-can-be-removed.c b/opt/resources/nothing-can-be-removed.c new file mode 100644 index 00000000..773852f6 --- /dev/null +++ b/opt/resources/nothing-can-be-removed.c @@ -0,0 +1,7 @@ +#include <stdio.h> + +int +main(void) { + printf("Nothing to be removed.\n"); + return 0; +} diff --git a/opt/resources/nothing-can-be-removed.c.expected b/opt/resources/nothing-can-be-removed.c.expected new file mode 100644 index 00000000..773852f6 --- /dev/null +++ b/opt/resources/nothing-can-be-removed.c.expected @@ -0,0 +1,7 @@ +#include <stdio.h> + +int +main(void) { + printf("Nothing to be removed.\n"); + return 0; +} |
