ICU-900 Fixed some compiler warnings.

X-SVN-Rev: 4396
This commit is contained in:
George Rhoten 2001-03-29 03:03:31 +00:00
parent 90ad7d9744
commit e7f0899a1a
2 changed files with 14 additions and 12 deletions

View File

@ -39,4 +39,18 @@ pkg_mak_writeStanza(FileStream *f, const UPKGOptions *o,
void
pkg_mak_writeFooter(FileStream *f, const UPKGOptions *o);
#ifdef WIN32
extern void pkg_mode_windows(UPKGOptions *o, FileStream *makefile, UErrorCode *status);
#else /*#ifdef WIN32*/
#ifdef UDATA_SO_SUFFIX
extern void pkg_mode_dll(UPKGOptions* o, FileStream *stream, UErrorCode *status);
#endif /*#ifdef UDATA_SO_SUFFIX*/
extern void pkg_mode_common(UPKGOptions* o, FileStream *stream, UErrorCode *status);
#endif /*#ifdef WIN32*/
extern void pkg_mode_files(UPKGOptions* o, FileStream *stream, UErrorCode *status);
#endif

View File

@ -30,18 +30,6 @@
U_CDECL_BEGIN
#include "pkgtypes.h"
#include "makefile.h"
#ifdef WIN32
extern void pkg_mode_windows(UPKGOptions *o, FileStream *makefile, UErrorCode *status);
#else /*#ifdef WIN32*/
#ifdef UDATA_SO_SUFFIX
extern void pkg_mode_dll(UPKGOptions* o, FileStream *stream, UErrorCode *status);
#endif /*#ifdef UDATA_SO_SUFFIX*/
extern void pkg_mode_common(UPKGOptions* o, FileStream *stream, UErrorCode *status);
#endif /*#ifdef WIN32*/
extern void pkg_mode_files(UPKGOptions* o, FileStream *stream, UErrorCode *status);
U_CDECL_END
static int executeMakefile(const UPKGOptions *o);