summaryrefslogtreecommitdiff
path: root/include/vis.h
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>1997-10-20 22:05:06 +0000
committerthorpej <thorpej@NetBSD.org>1997-10-20 22:05:06 +0000
commit14cd99880cb72bea60dd9fc6bda2314b601f3f26 (patch)
tree0909db419a51c907500c5f83925a429fee2db7c7 /include/vis.h
parent470dedcf2cefca91af947214a4324d3fb5c53701 (diff)
Fix the shared library versioning snafu caused by the recent changes
to the stat(2) family and msync(2). This uses a primitive function versioning scheme. This reverts the libc shared library major version from 13 to 12, and adds a few new interfaces to bring us to libc version 12.20. From Frank van der Linden <fvdl@NetBSD.ORG>.
Diffstat (limited to 'include/vis.h')
-rw-r--r--include/vis.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/vis.h b/include/vis.h
index 7fe175bea01..b13a13fa84d 100644
--- a/include/vis.h
+++ b/include/vis.h
@@ -1,4 +1,4 @@
-/* $NetBSD: vis.h,v 1.5 1997/10/16 23:25:35 christos Exp $ */
+/* $NetBSD: vis.h,v 1.6 1997/10/20 22:05:40 thorpej Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@@ -80,7 +80,10 @@ char *vis __P((char *, int, int, int));
int strvis __P((char *, const char *, int));
int strvisx __P((char *, const char *, size_t, int));
int strunvis __P((char *, const char *));
-int unvis __P((char *, int, int *, int));
+int unvis __P((char *, char, int *, int));
+int __unvis13 __P((char *, int, int *, int));
__END_DECLS
+#define unvis(p,c,i,j) __unvis13(p,c,i,j)
+
#endif /* !_VIS_H_ */