summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/misc.c b/misc.c
index 32290640e..cc7b745af 100644
--- a/misc.c
+++ b/misc.c
@@ -77,13 +77,6 @@ void InitPlayerRandoms()
}
}
-void memswap(void *a, void *b, size_t size) {
- void *c = alloca(size);
- memcpy(c, a, size);
- memcpy(a, b, size);
- memcpy(b, c, size);
-}
-
void SetDate(uint date)
{
YearMonthDay ymd;