We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afd31b6 commit 2a3c760Copy full SHA for 2a3c760
2 files changed
bits.c
@@ -2,6 +2,7 @@
2
* with binary and hex output
3
* July 3, 2022 */
4
#include <stdio.h>
5
+// test
6
7
void bits(size_t const size, void const * const ptr) {
8
unsigned char *b = (unsigned char *)ptr;
sys/symlink.c
@@ -18,10 +18,11 @@ int main(int argc, char *argv[]) {
18
fprintf(stderr, "ERROR: Symbolic link loop\n");
19
else
20
fprintf(stderr, "ERROR: Could not make symbolic link\n");
21
+ return 2;
22
}
23
else {
24
printf("Created symbolic link\n");
25
+ return 0;
26
- return 0;
27
28
0 commit comments