summaryrefslogtreecommitdiff
path: root/acconfig.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-11-26 12:21:24 +1100
committerDamien Miller <djm@mindrot.org>1999-11-26 12:21:24 +1100
commit42b81ffe7d1e98b362696076edbc56a66368053e (patch)
tree0c11756e8b9def63760aa59e6d2a195fcc380196 /acconfig.h
parentbf3f6ef19b8d43b09598807cc30de7e66be37563 (diff)
- Add definition for __P()
- Added [v]snprintf() replacement for systems that lack it
Diffstat (limited to 'acconfig.h')
-rw-r--r--acconfig.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/acconfig.h b/acconfig.h
index e6892ee55..25f491414 100644
--- a/acconfig.h
+++ b/acconfig.h
@@ -221,3 +221,7 @@ enum
221#else 221#else
222# define PAM_STRERROR(a,b) pam_strerror((a),(b)) 222# define PAM_STRERROR(a,b) pam_strerror((a),(b))
223#endif 223#endif
224
225#ifndef __P
226# define __P(x) x
227#endif