diff options
author | Bodo Möller <bodo@openssl.org> | 1999-04-23 22:13:45 +0000 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 1999-04-23 22:13:45 +0000 |
commit | ec577822f95a8bca0023c5c77cef1a4916822d4a (patch) | |
tree | 206e75c0178ff0719b87a4d94e261fc243ce42a8 /crypto/lhash | |
parent | 806115771c7a056756cb5f93bb3aaa71cd418e49 (diff) | |
download | openssl-new-ec577822f95a8bca0023c5c77cef1a4916822d4a.tar.gz |
Change #include filenames from <foo.h> to <openssl.h>.
Submitted by:
Reviewed by:
PR:
Diffstat (limited to 'crypto/lhash')
-rw-r--r-- | crypto/lhash/Makefile.ssl | 6 | ||||
-rw-r--r-- | crypto/lhash/lh_stats.c | 2 | ||||
-rw-r--r-- | crypto/lhash/lh_test.c | 2 | ||||
-rw-r--r-- | crypto/lhash/lhash.c | 4 |
4 files changed, 7 insertions, 7 deletions
diff --git a/crypto/lhash/Makefile.ssl b/crypto/lhash/Makefile.ssl index f30a7efe1c..779d254207 100644 --- a/crypto/lhash/Makefile.ssl +++ b/crypto/lhash/Makefile.ssl @@ -45,15 +45,15 @@ files: links: @$(TOP)/util/point.sh Makefile.ssl Makefile - @$(TOP)/util/mklink.sh ../../include $(EXHEADER) + @$(TOP)/util/mklink.sh ../../include/openssl $(EXHEADER) @$(TOP)/util/mklink.sh ../../test $(TEST) @$(TOP)/util/mklink.sh ../../apps $(APPS) install: @for i in $(EXHEADER) ; \ do \ - (cp $$i $(INSTALLTOP)/include/$$i; \ - chmod 644 $(INSTALLTOP)/include/$$i ); \ + (cp $$i $(INSTALLTOP)/include/openssl/$$i; \ + chmod 644 $(INSTALLTOP)/include/openssl/$$i ); \ done; tags: diff --git a/crypto/lhash/lh_stats.c b/crypto/lhash/lh_stats.c index 44ddff56c4..80b931c12b 100644 --- a/crypto/lhash/lh_stats.c +++ b/crypto/lhash/lh_stats.c @@ -63,7 +63,7 @@ * and things should work as expected */ #include "cryptlib.h" -#include "lhash.h" +#include <openssl/lhash.h> #ifndef HEADER_BIO_H diff --git a/crypto/lhash/lh_test.c b/crypto/lhash/lh_test.c index 294b42bc82..08138b52c3 100644 --- a/crypto/lhash/lh_test.c +++ b/crypto/lhash/lh_test.c @@ -59,7 +59,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#include "lhash.h" +#include <openssl/lhash.h> main() { diff --git a/crypto/lhash/lhash.c b/crypto/lhash/lhash.c index 29e091525c..8c649ad251 100644 --- a/crypto/lhash/lhash.c +++ b/crypto/lhash/lhash.c @@ -97,8 +97,8 @@ #include <stdio.h> #include <string.h> #include <stdlib.h> -#include "crypto.h" -#include "lhash.h" +#include <openssl/crypto.h> +#include <openssl/lhash.h> const char *lh_version="lhash" OPENSSL_VERSION_PTEXT; |