From 3d6c6501891ab37f334c209e065ad0e7a2cd5a74 Mon Sep 17 00:00:00 2001 From: Sean Eric Fagan Date: Thu, 18 Jul 1991 20:19:17 +0000 Subject: Initial revision --- gprof/t.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 gprof/t.c (limited to 'gprof/t.c') diff --git a/gprof/t.c b/gprof/t.c new file mode 100755 index 0000000..62272b4 --- /dev/null +++ b/gprof/t.c @@ -0,0 +1,12 @@ +void +foo(int x) { + if (x&3) + foo (x-1); +} + +main() { + int i; + + for (i=0; i< 1024; i++) + foo(i); +} -- cgit v1.1