aboutsummaryrefslogtreecommitdiff
path: root/gprof/t.c
diff options
context:
space:
mode:
Diffstat (limited to 'gprof/t.c')
-rwxr-xr-xgprof/t.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/gprof/t.c b/gprof/t.c
deleted file mode 100755
index 62272b4..0000000
--- a/gprof/t.c
+++ /dev/null
@@ -1,12 +0,0 @@
-void
-foo(int x) {
- if (x&3)
- foo (x-1);
-}
-
-main() {
- int i;
-
- for (i=0; i< 1024; i++)
- foo(i);
-}