summaryrefslogtreecommitdiff
path: root/mcon/U/d_charsprf.U
diff options
context:
space:
mode:
Diffstat (limited to 'mcon/U/d_charsprf.U')
-rw-r--r--mcon/U/d_charsprf.U11
1 files changed, 6 insertions, 5 deletions
diff --git a/mcon/U/d_charsprf.U b/mcon/U/d_charsprf.U
index 473ba97..c7d5522 100644
--- a/mcon/U/d_charsprf.U
+++ b/mcon/U/d_charsprf.U
@@ -1,12 +1,12 @@
-?RCS: $Id: d_charsprf.U,v 3.0 1993/08/18 12:05:49 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_charsprf.U,v $
?RCS: Revision 3.0 1993/08/18 12:05:49 ram
@@ -27,18 +27,19 @@
?C:.
?H:#$d_charsprf CHARSPRINTF /**/
?H:.
+?F:!ucbsprf.c !ucbsprf
?LINT:set d_charsprf
: see if sprintf is declared as int or pointer to char
echo " "
$cat >ucbsprf.c <<'EOF'
-main()
+int main()
{
int sprintf();
char buf[10];
exit((unsigned long)sprintf(buf,"%s","foo") > 10L);
}
EOF
-if $cc ucbsprf.c -o ucbsprf >/dev/null 2>&1 && ./ucbsprf; then
+if $cc -o ucbsprf ucbsprf.c >/dev/null 2>&1 && ./ucbsprf; then
echo "Your sprintf() returns (int)." >&4
val="$undef"
else