mangle/src/dump_poly.c
2021-06-21 16:38:06 +02:00

14 lines
433 B
C

/*------------------------------------------------------------------------------
Š A J S Hamilton 2001
------------------------------------------------------------------------------*/
#include "manglefn.h"
/*------------------------------------------------------------------------------
Dump polygon.
*/
void dump_poly(int npoly, polygon *poly[/*npoly*/])
{
char outfile[] = "jpoly";
wrmask(outfile, 0x0, npoly, poly);
}