Skip to content

Commit 2a3c760

Browse files
committed
Test commit
1 parent afd31b6 commit 2a3c760

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

bits.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
* with binary and hex output
33
* July 3, 2022 */
44
#include <stdio.h>
5+
// test
56

67
void bits(size_t const size, void const * const ptr) {
78
unsigned char *b = (unsigned char *)ptr;

sys/symlink.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@ int main(int argc, char *argv[]) {
1818
fprintf(stderr, "ERROR: Symbolic link loop\n");
1919
else
2020
fprintf(stderr, "ERROR: Could not make symbolic link\n");
21+
return 2;
2122
}
2223
else {
2324
printf("Created symbolic link\n");
25+
return 0;
2426
}
25-
return 0;
2627
}
2728

0 commit comments

Comments
 (0)