summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/m_swap.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/m_swap.h b/src/m_swap.h
index e0887038..86bd5d5c 100644
--- a/src/m_swap.h
+++ b/src/m_swap.h
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: m_swap.h 342 2006-01-24 01:46:08Z fraggle $
+// $Id: m_swap.h 406 2006-03-02 01:01:05Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@@ -37,8 +37,8 @@
// Endianess handling.
// WAD files are stored little endian.
#ifdef WORDS_BIGENDIAN
-short SwapSHORT(short);
-int SwapLONG(int);
+extern unsigned short SwapSHORT(unsigned short);
+extern unsigned int SwapLONG(unsigned int);
#define SHORT(x) ((short)SwapSHORT((unsigned short) (x)))
#define LONG(x) ((int)SwapLONG((unsigned int) (x)))
#else