* pos-obsolete.h: Add for obsolete functions until they can be
removed from the library. Contains setenv functions.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13592
dc483132-0cff-0310-8789-
dd5450dbe970
+2001-07-08 Ezra Peisach <epeisach@mit.edu>
+
+ * setenv.c: Include pos-obsolete.h
+
+ * pos-obsolete.h: Add for obsolete functions until they can be
+ removed from the library. Contains setenv functions.
+
2000-06-30 Ezra Peisach <epeisach@mit.edu>
* setenv.c: Do not provide prototype for static function unless
--- /dev/null
+/*
+ * These prototypes are for obsolete functions which we leave behind
+ * until removed from the library
+*/
+
+/* These were used up until 1.2 release */
+int krb5_setenv(const char *, const char *, int);
+void krb5_unsetenv(const char *name);
+char *krb5_getenv(const char *name);
+
+
#include <stddef.h>
#include <stdlib.h>
#include <string.h>
+#include "pos-obsolete.h"
#ifndef __P
#define __P(x) ()