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 2ea8e38 commit 5499855Copy full SHA for 5499855
inheritance/__init__.py
@@ -21,7 +21,6 @@ def compiles_test():
21
inheritance = re.sub(r"int\s+main\(", "int distro_main(", open("inheritance.c").read())
22
testing = open("testing.c").read()
23
with open("inheritance_test.c", "w") as f:
24
- f.write("#include <string.h>\n")
25
f.write(inheritance)
26
f.write("\n")
27
f.write(testing)
inheritance/testing.c
@@ -1,3 +1,5 @@
1
+#include <string.h>
2
+
3
int check_alleles(person *p)
4
{
5
if (p -> parents[0] == NULL)
0 commit comments