summaryrefslogtreecommitdiff
path: root/h
diff options
context:
space:
mode:
authorGravatar Lucien Van Elsen <lwvanels@mit.edu>1991-12-05 10:33:06 +0000
committerGravatar Lucien Van Elsen <lwvanels@mit.edu>1991-12-05 10:33:06 +0000
commitc9a45840b96ae8b5347b2965b271894b01a30df4 (patch)
tree6d68537b1da40d3fedb7395db3e54fd8d7ea2ec0 /h
parentea132263b3e8c08cfd3f877f2a1d1ca453d8b369 (diff)
Take out c++ stuff
Diffstat (limited to 'h')
-rw-r--r--h/zephyr/acl.h18
1 files changed, 6 insertions, 12 deletions
diff --git a/h/zephyr/acl.h b/h/zephyr/acl.h
index 142d618..a196ed1 100644
--- a/h/zephyr/acl.h
+++ b/h/zephyr/acl.h
@@ -16,18 +16,12 @@
#ifndef __ACL__
#define __ACL__
-#if defined(__STDC__) || defined(__cplusplus)
-#ifdef __cplusplus
-extern "C" {
-#endif
- extern int acl_add (const char *, const char *);
- extern int acl_check (const char *, const char *);
- extern int acl_delete (const char *, const char *);
- extern int acl_initialize (const char *, int);
-#ifdef __cplusplus
-}
-#endif
-#else /* not STDC or C++ */
+#if defined(__STDC_)
+ extern int acl_add ( char *, char *);
+ extern int acl_check ( char *, char *);
+ extern int acl_delete ( char *, char *);
+ extern int acl_initialize ( char *, int);
+#else /* not STDC */
extern int acl_check(), acl_add(), acl_delete(), acl_initialize();
#endif
#endif /* __ACL__ */