diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2000-10-16 06:04:50 +0000 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2000-10-16 06:04:50 +0000 |
commit | 81912b37409be0387e10346b84749ffdabcd4046 (patch) | |
tree | 24b8fe20a3b2235b303d428731c5d38a5b266ea7 /file_io/os2/readwrite.c | |
parent | a92d4bd076b126c4d64ebeee40692b4b2d56a128 (diff) | |
download | apr-81912b37409be0387e10346b84749ffdabcd4046.tar.gz apr-81912b37409be0387e10346b84749ffdabcd4046.zip |
Renamed all MODULE_EXPORT symbols to AP_MODULE_DECLARE and all symbols
for CORE_EXPORT to AP_CORE_DECLARE (namespace protecting the wrapper)
and retitled API_EXPORT as AP_DECLARE and APR_EXPORT as APR_DECLARE.
All _VAR_ flavors changes to _DATA to be absolutely clear.
Thank you Greg, for the most obvious suggestion.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60587 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io/os2/readwrite.c')
-rw-r--r-- | file_io/os2/readwrite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/file_io/os2/readwrite.c b/file_io/os2/readwrite.c index 310e2df9a..4794232c7 100644 --- a/file_io/os2/readwrite.c +++ b/file_io/os2/readwrite.c @@ -325,7 +325,7 @@ apr_status_t apr_fgets(char *str, int len, apr_file_t *thefile) -APR_EXPORT(int) apr_fprintf(apr_file_t *fptr, const char *format, ...) +APR_DECLARE(int) apr_fprintf(apr_file_t *fptr, const char *format, ...) { int cc; va_list ap; |