Makefile.in: PC builds all C files because of function name changes
authorTheodore Tso <tytso@mit.edu>
Sat, 23 Sep 1995 00:26:04 +0000 (00:26 +0000)
committerTheodore Tso <tytso@mit.edu>
Sat, 23 Sep 1995 00:26:04 +0000 (00:26 +0000)
c_localtime.c, c_ustime.c: removed INTERFACE keyword.

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

src/lib/crypto/os/ChangeLog
src/lib/crypto/os/Makefile.in
src/lib/crypto/os/c_localaddr.c
src/lib/crypto/os/c_ustime.c

index 78cda02df5f57ac1ce6be8457e82c9c96b96f3da..e2cf90365fbbbc055fa26fd564f450b638f952e5 100644 (file)
@@ -1,3 +1,8 @@
+Wed Sep 13 10:33:53 1995 Keith Vetter (keithv@fusion.com)
+
+       * Makefile.in: PC builds all C files because of function name changes.
+       * c_localtime.c, c_ustime.c: removed INTERFACE keyword.
+
 Wed Sep 13 17:32:36 1995  Theodore Y. Ts'o  <tytso@dcl>
 
        * c_localaddr.c (krb5_crypto_os_localaddr): Clear the buffer
index 12d5ad8079b9b993c2a38b784ea3f5092631902c..bdf087b481d20f8904e11173c0f9ef6a1a3b8185 100644 (file)
@@ -10,7 +10,8 @@ LIBOBJS = @LIBOBJS@
        $(CC) $(CFLAGS) -c $(srcdir)/$*.c
 @SHARED_RULE@
 
-OBJS=  rnd_confoun.$(OBJEXT) c_localaddr.$(OBJEXT) c_ustime.$(OBJEXT) $(LIBOBJS)
+COBJS= rnd_confoun.$(OBJEXT) c_localaddr.$(OBJEXT) c_ustime.$(OBJEXT) 
+OBJS= $(COBJS) $(LIBOBJS)
 
 SRCS=  rnd_confoun.c c_localaddr.c c_ustime.c
 
@@ -20,7 +21,7 @@ all-unix:: shared $(OBJS)
 
 all-mac:: $(OBJS)
 
-all-windows: rnd_confoun.obj
+all-windows: $(COBJS)
 
 shared:
        mkdir shared
index c1d75cf70ca10ca11dad43921fb6240fd7bbe29e..9bb03e4c988a1701c510fef27c086f0db5c0d9d8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * lib/crypto/os/localaddr.c
+ * lib/crypto/os/c_localaddr.c
  *
  * Copyright 1990,1991 by the Massachusetts Institute of Technology.
  * All Rights Reserved.
@@ -105,7 +105,7 @@ extern int errno;
  * This uses the SIOCGIFCONF, SIOCGIFFLAGS, and SIOCGIFADDR ioctl's.
  */
 
-krb5_error_code INTERFACE
+krb5_error_code
 krb5_crypto_os_localaddr(addr)
     krb5_address ***addr;
 {
@@ -243,7 +243,7 @@ n_found = 0;
  * card per machine, so gethostent is good enough. 
  */
 
-krb5_error_code INTERFACE
+krb5_error_code
 krb5_crypto_os_localaddr (krb5_address ***addr) {
     char host[64];                              /* Name of local machine */
     struct hostent *hostrec;
index 3ab6b944cfeb33d56f15acbf3820304f5d9c0416..51c90767d771452a9ac634bb237af5ae5c6424d7 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * lib/crypto/os/ustime.c
+ * lib/crypto/os/c_ustime.c
  *
  * Copyright 1990,1991 by the Massachusetts Institute of Technology.
  * All Rights Reserved.
@@ -86,7 +86,7 @@ getTimeZoneOffset()
 
 /* Returns the GMT in seconds (and fake microseconds) using the Unix epoch */
 
-krb5_error_code INTERFACE
+krb5_error_code
 krb5_crypto_us_timeofday(seconds, microseconds)
     krb5_int32 *seconds, *microseconds;
 {
@@ -145,7 +145,7 @@ krb5_crypto_us_timeofday(seconds, microseconds)
 static time_t win_gettime ();
 static long win_time_get_epoch();               /* Adjust for MSC 7.00 bug */
 
-krb5_error_code INTERFACE
+krb5_error_code
 krb5_crypto_us_timeofday(seconds, microseconds)
 register krb5_int32 *seconds, *microseconds;
 {
@@ -251,7 +251,7 @@ extern int errno;
 
 static struct timeval last_tv = {0, 0};
 
-krb5_error_code INTERFACE
+krb5_error_code
 krb5_crypto_us_timeofday(seconds, microseconds)
     register krb5_int32 *seconds, *microseconds;
 {