From 4d40ca6159f38519ae17f62b8a6ac247b9a97fcd Mon Sep 17 00:00:00 2001 From: helixhorned Date: Thu, 29 Nov 2012 14:08:03 +0000 Subject: [PATCH] Fix build. It was my fault after all since I forgot common.h in r3243. git-svn-id: https://svn.eduke32.com/eduke32@3245 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/build/include/common.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/polymer/eduke32/build/include/common.h b/polymer/eduke32/build/include/common.h index 07a17e921..847c53238 100644 --- a/polymer/eduke32/build/include/common.h +++ b/polymer/eduke32/build/include/common.h @@ -67,6 +67,9 @@ void G_DoAutoload(const char *dirname); char *dup_filename(const char *fn); int32_t maybe_append_ext(char *wbuf, int32_t wbufsiz, const char *fn, const char *ext); +int32_t ldist(const spritetype *s1, const spritetype *s2); +int32_t dist(const spritetype *s1, const spritetype *s2); + // timer defs for profiling function chunks the simple way #define EDUKE32_TMRDEF int32_t t[20], ti=0; const char *tmrstr=__func__; fprintf(stderr,"%s\n",tmrstr); t[ti++]=getticks(); #define EDUKE32_TMRTIC t[ti++]=getticks()