summaryrefslogtreecommitdiff
path: root/vms
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
commit34664ff06a2a41d0095de58e52c037dac3c2bf83 (patch)
treea5940b7fa1d7a960a0e1f6a7debce96bd2ec2d0c /vms
parent5ad4287aeb8f1e987bc941d124f478bfd023233b (diff)
delete reference for snprintf()
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7522 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vms')
-rw-r--r--vms/vms.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/vms/vms.h b/vms/vms.h
index d52b00b4c7..fc57cc8675 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