We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb135fb commit f7751e1Copy full SHA for f7751e1
2 files changed
problems/find_single/dist/find_single/find.c
@@ -1,5 +1,8 @@
1
// Searches for a needle in a haystack
2
-#define _XOPEN_SOURCE 500
+#ifndef _XOPEN_SOURCE
3
+ #define _XOPEN_SOURCE 500
4
+#endif
5
+
6
#include <cs50.h>
7
#include <stdio.h>
8
#include <stdlib.h>
problems/sort_single/dist/sort_single/sort.c
// Sorts n numbers and prints them out
0 commit comments