Renamed the options sub-structs for more consistency. Some portab fixes.

committer: mfx <mfx> 1058221575 +0000
This commit is contained in:
Markus F.X.J. Oberhumer
2003-07-14 22:26:15 +00:00
parent f9054529c1
commit 48ec581539
18 changed files with 127 additions and 124 deletions
+4 -4
View File
@@ -795,13 +795,13 @@ static int xdopr(char *buffer, size_t maxlen, const char *format, va_list args)
}
int __UPX_CDECL upx_vsnprintf(char *str, size_t count, const char *format, va_list ap)
int __acc_cdecl upx_vsnprintf(char *str, size_t count, const char *format, va_list ap)
{
return xdopr(str, count, format, ap);
}
int __UPX_CDECL upx_snprintf(char *str, size_t count, const char *format,...)
int __acc_cdecl upx_snprintf(char *str, size_t count, const char *format,...)
{
va_list ap;
int ret;
@@ -813,7 +813,7 @@ int __UPX_CDECL upx_snprintf(char *str, size_t count, const char *format,...)
}
int __UPX_CDECL upx_vasprintf(char **ptr, const char *format, va_list ap)
int __acc_cdecl upx_vasprintf(char **ptr, const char *format, va_list ap)
{
int ret;
@@ -832,7 +832,7 @@ int __UPX_CDECL upx_vasprintf(char **ptr, const char *format, va_list ap)
}
int __UPX_CDECL upx_asprintf(char **ptr, const char *format, ...)
int __acc_cdecl upx_asprintf(char **ptr, const char *format, ...)
{
va_list ap;
int ret;