summaryrefslogtreecommitdiff
path: root/mcon/U/sunscanf.U
diff options
context:
space:
mode:
Diffstat (limited to 'mcon/U/sunscanf.U')
-rw-r--r--mcon/U/sunscanf.U10
1 files changed, 5 insertions, 5 deletions
diff --git a/mcon/U/sunscanf.U b/mcon/U/sunscanf.U
index 7b78f6d..a16fdaa 100644
--- a/mcon/U/sunscanf.U
+++ b/mcon/U/sunscanf.U
@@ -1,12 +1,12 @@
-?RCS: $Id: sunscanf.U,v 3.0 1993/08/18 12:09:54 ram Exp $
+?RCS: $Id$
?RCS:
-?RCS: Copyright (c) 1991-1993, Raphael Manfredi
+?RCS: Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi
?RCS:
?RCS: You may redistribute only under the terms of the Artistic Licence,
?RCS: as specified in the README file that comes with the distribution.
?RCS: You may reuse parts of this distribution only within the terms of
?RCS: that same Artistic Licence; a copy of which may be found at the root
-?RCS: of the source tree for dist 3.0.
+?RCS: of the source tree for dist 4.0.
?RCS:
?RCS: $Log: sunscanf.U,v $
?RCS: Revision 3.0 1993/08/18 12:09:54 ram
@@ -29,7 +29,7 @@
echo " "
echo "Checking to see what flavor of scanf you have..." >&4
$cat >scanf.c <<'EOCP'
-main()
+int main()
{
float value;
@@ -37,7 +37,7 @@ main()
printf("%d\n", value == 4.5);
}
EOCP
-if $cc $ccflags scanf.c -o scanf >/dev/null 2>&1 ; then
+if $cc $ccflags -o scanf scanf.c >/dev/null 2>&1 ; then
if $test `scanf` = 0; then
echo "Hmm.. seems your not running the USG flavor.."
val="$undef"