Loading...
tests/print_apple_array.c xnu-12377.101.15 /dev/null
--- xnu/xnu-12377.101.15/tests/print_apple_array.c
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * Simple program to dump the apple array contents to stdout for verification.
- * Note that libsystem mucks with some of the fields before we can see them.
- */
-
-#include <stdio.h>
-#include <stdbool.h>
-
-int
-main(
-	__unused int argc,
-	__unused char **argv,
-	__unused  char **environ,
-	char **apple)
-{
-	int i = 0;
-	while (true) {
-		char *curr = apple[i];
-		if (curr == NULL) {
-			break;
-		} else {
-			printf("%s\n", curr);
-		}
-		i++;
-	}
-	return 0;
-}