1
0
mirror of https://github.com/upx/upx synced 2025-09-28 19:06:07 +08:00

Cleanups.

committer: mfx <mfx> 1068991974 +0000
This commit is contained in:
Markus F.X.J. Oberhumer 2003-11-16 14:12:54 +00:00
parent aba5c40b17
commit de1a4b4da4
2 changed files with 4 additions and 4 deletions

View File

@ -23,7 +23,7 @@ zip:
cvs-admin-ko: cvs-admin-ko:
cvs admin -ko . cvs admin -ko .
cvs update cvs update -P -d
ChangeLog: ChangeLog:
perl $(srcdir)/scripts/cvs2cl.pl --utc -f ChangeLog.cvs perl $(srcdir)/scripts/cvs2cl.pl --utc -f ChangeLog.cvs

View File

@ -53,7 +53,7 @@
# endif # endif
# pragma warn -aus // 8004: 'x' is assigned a value that is never used # pragma warn -aus // 8004: 'x' is assigned a value that is never used
# pragma warn -inl // 8026+8027: Function not expanded inline # pragma warn -inl // 8026+8027: Function not expanded inline
// Borland compilers typically generate a number of bogus warnings, and // Borland compilers typically produce a number of bogus warnings, and
// the actual diagnostics vary from version to version... // the actual diagnostics vary from version to version...
# if (__BORLANDC__ < 0x0530) # if (__BORLANDC__ < 0x0530)
# pragma warn -csu // 8012: Comparing signed and unsigned values # pragma warn -csu // 8012: Comparing signed and unsigned values
@ -161,7 +161,7 @@
# endif # endif
#endif #endif
#if !defined(UINT_MAX) || (UINT_MAX < 0xffffffffL) #if !defined(UINT_MAX) || (UINT_MAX < 0xffffffffL)
# error "you lose" # error "UINT_MAX"
#endif #endif
@ -197,7 +197,7 @@
# endif # endif
#endif #endif
#if !defined(VALGRIND_DISCARD) #if !defined(VALGRIND_DISCARD)
# define VALGRIND_DISCARD(handle) ACC_UNUSED(handle) # define VALGRIND_DISCARD(handle) ((void)(&handle))
#endif #endif