If the header files have strdup, don't try to redefine it
authorTheodore Tso <tytso@mit.edu>
Wed, 26 Oct 1994 03:55:31 +0000 (03:55 +0000)
committerTheodore Tso <tytso@mit.edu>
Wed, 26 Oct 1994 03:55:31 +0000 (03:55 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4574 dc483132-0cff-0310-8789-dd5450dbe970

src/include/krb5/ChangeLog
src/include/krb5/ext-proto.h

index 722c6ed642dcbcf0e65393017aa14e86f7cc111a..8d93aedc763cd1a676b53e030f789ef049bc07c9 100644 (file)
@@ -1,3 +1,8 @@
+Tue Oct 25 23:54:25 1994  Theodore Y. Ts'o  (tytso@dcl)
+
+       * ext-proto.h (strdup): If the header files have strdup, don't try
+               to redefine it.
+
 Fri Oct 14 00:40:01 1994  Theodore Y. Ts'o  (tytso@dcl)
 
        * mit-des.h: Add declaration for krb5_des_md5_cst_entry.
index 6f3e802f61ec0ff6689bc4743aca8d4bd9bce97b..e916fa0008296212bb12aabd798a7ab5d5a8e384 100644 (file)
@@ -49,7 +49,9 @@ extern char *getenv();
 #include <strings.h>
 #endif
 
+#ifndef HAS_STRDUP
 extern char *strdup PROTOTYPE((const char *));
+#endif
 
 #ifdef HAS_UNISTD_H
 #include <unistd.h>