summaryrefslogtreecommitdiff
path: root/mcon/U/d_vprintf.U
diff options
context:
space:
mode:
Diffstat (limited to 'mcon/U/d_vprintf.U')
-rw-r--r--mcon/U/d_vprintf.U11
1 files changed, 6 insertions, 5 deletions
diff --git a/mcon/U/d_vprintf.U b/mcon/U/d_vprintf.U
index df02054..f74422d 100644
--- a/mcon/U/d_vprintf.U
+++ b/mcon/U/d_vprintf.U
@@ -1,12 +1,12 @@
-?RCS: $Id: d_vprintf.U,v 3.0 1993/08/18 12:07:59 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: d_vprintf.U,v $
?RCS: Revision 3.0 1993/08/18 12:07:59 ram
@@ -38,6 +38,7 @@
?H:#$d_vprintf HAS_VPRINTF /**/
?H:#$d_charvspr USE_CHAR_VSPRINTF /**/
?H:.
+?F:!vprintf !vprintf.c
?T:val2
?LINT:set d_vprintf d_charvspr
: see if vprintf exists
@@ -48,7 +49,7 @@ if set vprintf val -f d_vprintf; eval $csym; $val; then
$cat >vprintf.c <<'EOF'
#include <varargs.h>
-main() { xxx("foo"); }
+int main() { xxx("foo"); }
xxx(va_alist)
va_dcl
@@ -60,7 +61,7 @@ va_dcl
exit((unsigned long)vsprintf(buf,"%s",args) > 10L);
}
EOF
- if $cc $ccflags vprintf.c -o vprintf >/dev/null 2>&1 && ./vprintf; then
+ if $cc $ccflags -o vprintf vprintf.c >/dev/null 2>&1 && ./vprintf; then
echo "Your vsprintf() returns (int)." >&4
val2="$undef"
else