diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2016-01-11 15:11:13 +0100 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2016-01-11 18:50:27 +0100 |
commit | e6b5c341b94d357b0158ad74b12edd51399a4b87 (patch) | |
tree | 0957d4adb18236b4f70e0edf836023d7b39a0d23 /apps/progs.pl | |
parent | GH540: add casts to safestack.h (diff) | |
download | openssl-e6b5c341b94d357b0158ad74b12edd51399a4b87.tar.xz openssl-e6b5c341b94d357b0158ad74b12edd51399a4b87.zip |
Inline LHASH_OF
Make LHASH_OF use static inline functions.
Add new lh_get_down_load and lh_set_down_load functions and their
typesafe inline equivalents.
Make lh_error a function instead of a macro.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'apps/progs.pl')
-rw-r--r-- | apps/progs.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/progs.pl b/apps/progs.pl index 065d954588..dd935cee0d 100644 --- a/apps/progs.pl +++ b/apps/progs.pl @@ -20,6 +20,8 @@ typedef struct function_st { const OPTIONS *help; } FUNCTION; +DECLARE_LHASH_OF(FUNCTION); + EOF grep(s/\.o//, @ARGV); |