Fix an extern "C" that was collateral damage in the last push. Fixes Lunatic build. DONT_BUILD.

git-svn-id: https://svn.eduke32.com/eduke32@6144 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2017-06-07 05:13:54 +00:00
parent 8d8fd61ed0
commit 0633795683

View file

@ -3,6 +3,10 @@
#ifndef clip_h_
#define clip_h_
#ifdef __cplusplus
extern "C" {
#endif
#define MAXCLIPNUM 1024
#ifdef HAVE_CLIPSHAPE_FEATURE
@ -84,4 +88,8 @@ int32_t clipmovex(vec3_t *pos, int16_t *sectnum, int32_t xvect, int32_t yvect, i
int32_t pushmove(vec3_t *vect, int16_t *sectnum, int32_t walldist, int32_t ceildist, int32_t flordist,
uint32_t cliptype) ATTRIBUTE((nonnull(1, 2)));
#ifdef __cplusplus
}
#endif
#endif