summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorakiyoshi <akiyoshi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-12-09 07:10:42 +0000
committerakiyoshi <akiyoshi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-12-09 07:10:42 +0000
commit71c72435fccc969167b5bb00e5155a57b781d621 (patch)
treea5940b7fa1d7a960a0e1f6a7debce96bd2ec2d0c
parent647c2b9b15fbdfe3f0fccaee3db1f9fcfe145341 (diff)
downloadruby-71c72435fccc969167b5bb00e5155a57b781d621.tar.gz
ruby-71c72435fccc969167b5bb00e5155a57b781d621.tar.xz
ruby-71c72435fccc969167b5bb00e5155a57b781d621.zip
delete reference for snprintf()
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7522 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--vms/vms.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/vms/vms.h b/vms/vms.h
index d52b00b4c..fc57cc867 100644
--- a/vms/vms.h
+++ b/vms/vms.h
@@ -1,6 +1,10 @@
+#ifndef VMSRUBY_VMS_H_INCLUDED
+#define VMSRUBY_VMS_H_INCLUDED
+
extern int isinf(double);
extern int isnan(double);
extern int flock(int fd, int oper);
extern int vsnprintf();
-extern int snprintf();
+
+#endif