From f0442e18d94358d7f478e7048b0523130d90104c Mon Sep 17 00:00:00 2001 From: Thomas Tanner Date: Mon, 15 Feb 1999 16:48:24 +0000 Subject: [PATCH] renamed foo1.c to foo.c --- cdemo/{foo1.c => foo.c} | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) rename cdemo/{foo1.c => foo.c} (90%) diff --git a/cdemo/foo1.c b/cdemo/foo.c similarity index 90% rename from cdemo/foo1.c rename to cdemo/foo.c index 6a027545..5c407058 100644 --- a/cdemo/foo1.c +++ b/cdemo/foo.c @@ -1,4 +1,4 @@ -/* foo1.c -- trivial test library +/* foo.c -- trivial test library Copyright (C) 1998-1999 Free Software Foundation, Inc. Originally by Thomas Tanner This file is part of GNU Libtool. @@ -25,10 +25,8 @@ USA. */ #include #endif -/* exported functions */ - int -foo1() +foo() { printf ("cos (0.0) = %g\n", (double) cos ((double) 0.0)); return FOO_RET; @@ -37,6 +35,6 @@ foo1() int hello() { - printf ("** This is foolib 1 **\n"); + printf ("** This is libfoo **\n"); return HELLO_RET; }