* asn1_encode_k.h:
authorTom Yu <tlyu@mit.edu>
Sun, 3 Jul 1994 08:45:53 +0000 (08:45 +0000)
committerTom Yu <tlyu@mit.edu>
Sun, 3 Jul 1994 08:45:53 +0000 (08:45 +0000)
* asn1buf.c:
* krbasn1.h: punt stdlib.h in favor of stdio.h.  It looks like
Harry was assuming that NULL gets defined in stdlib instead of
stdio

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@3949 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/asn.1/ChangeLog
src/lib/krb5/asn.1/asn1_encode_k.h
src/lib/krb5/asn.1/asn1buf.c
src/lib/krb5/asn.1/krbasn1.h

index 90e6566cfd840178782045c5003a058178aa8842..21ff4de4541d57cd5a343aa6f88437f45040009c 100644 (file)
@@ -1,3 +1,11 @@
+Sun Jul  3 04:43:42 1994  Tom Yu  (tlyu at dragons-lair)
+
+       * asn1_encode_k.h:
+       * asn1buf.c:
+       * krbasn1.h: punt stdlib.h in favor of stdio.h.  It looks like
+       Harry was assuming that NULL gets defined in stdlib instead of
+       stdio
+
 Fri Jul  1 13:03:39 1994  Mark Eichin  (eichin@cygnus.com)
 
        * asn1_encode_k.c (asn1_encode_msgtype): comment out krb5_msgtype
index 7a0f62a43829d0a50df99b91bc9750dcda553522..e54e974bda01996768d4a0efeb893f0d72b3c940 100644 (file)
@@ -2,7 +2,7 @@
 #define __ASN1_ENCODE_KRB5_H__
 
 #include <krb5/krb5.h>
-#include <stdlib.h>
+#include <stdio.h>
 #include "asn1buf.h"
 
 /*
index e3d610b61ced575af8f01f999f581ea83da03076..0503373c24933ac3e3630606ab321a777c43cfb5 100644 (file)
@@ -49,7 +49,7 @@
                     to being crossed by next.)) */
 
 #include "asn1buf.h"
-#include <stdlib.h>
+#include <stdio.h>
 
 asn1_error_code asn1buf_create(DECLARG(asn1buf **, buf))
      OLDDECLARG(asn1buf **, buf)
index b1305036e4d46134fb8e2a73f77ee93c12fffe0f..25489a9752885ed0ef4360d16d466f131081e2b8 100644 (file)
@@ -2,7 +2,7 @@
 #define __KRBASN1_H__
 
 #include <krb5/krb5.h>
-#include <stdlib.h>
+#include <stdio.h>
 #include <errno.h>
 #include <limits.h>