Browse Source

"sixty-seven"

fdr 4 hours ago
commit
624b1cfaba
1 changed files with 7 additions and 0 deletions
  1. 7 0
      67.c

+ 7 - 0
67.c

@@ -0,0 +1,7 @@
+int write(int fd, char *buf, long len);
+
+int main() {
+	char six_seven = 67;
+	write(1, &six_seven, 1);
+	return 0;
+}