+Tue Aug 30 21:30:18 1994 Theodore Y. Ts'o (tytso at tsx-11)
+
+ * cmd_tbl.lex.l: Add declaration for strdup() if HAS_STRDUP is not
+ defined.
+
+ * ct.y: Added #include of string.h; added declaration for
+ strdup() if HAS_STRDUP is not defined.
+
Tue Jul 19 20:27:59 1994 Tom Yu (tlyu at dragons-lair)
* Makefile.in: remove spurious includes rules
#include "ct.tab.h"
#include "mit-sipb-copyright.h"
+#ifndef HAS_STRDUP
+extern char *strdup();
+#endif
+
extern char *last_token;
static l_command_table()
* For copyright info, see mit-sipb-copyright.h.
*/
#include <stdio.h>
+#include <string.h>
#include "mit-sipb-copyright.h"
+#ifndef HAS_STRDUP
+extern char *strdup();
+#endif
+
char *str_concat3(), *generate_rqte(), *quote();
long flag_value();
char *last_token = (char *)NULL;