ports/mail/faces/files/patch-compface_compface.c
Brooks Davis 4680b0d8d0 mail/faces: [NFC] regen patches at unified diffs
PR:		281783
Approved by:	portmgr (build fix blanket), mikael
2024-10-01 21:11:45 +01:00

26 lines
451 B
C

--- compface/compface.c.orig
+++ compface/compface.c
@@ -14,16 +14,19 @@
* to me, then an attempt will be made to fix them.
*/
+#define MAIN
+
#include "compface.h"
-#include "vars.h"
int
-compface(char *fbuf)
+compface(fbuf)
+char *fbuf;
{
- if (!(status = setjmp(comp_env))) {
+ if (!(status = setjmp(comp_env)))
+ {
ReadFace(fbuf);
GenFace();
CompAll(fbuf);
}
- return(status);
+ return status;
}