opnsense-ports/mail/faces/files/patch-compface_compface.c
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

40 lines
756 B
C

*** compface/compface.c Thu Feb 21 16:42:54 2002
--- /home/lkoeller/tmp/ports/mail/faces/work/faces/compface/compface.c Wed Jun 19 08:29:12 1991
***************
*** 14,29 ****
* to me, then an attempt will be made to fix them.
*/
#include "compface.h"
- #include "vars.h"
int
! compface(char *fbuf)
{
! if (!(status = setjmp(comp_env))) {
ReadFace(fbuf);
GenFace();
CompAll(fbuf);
}
! return(status);
}
--- 13,31 ----
* to me, then an attempt will be made to fix them.
*/
+ #define MAIN
+
#include "compface.h"
int
! compface(fbuf)
! char *fbuf;
{
! if (!(status = setjmp(comp_env)))
! {
ReadFace(fbuf);
GenFace();
CompAll(fbuf);
}
! return status;
}