mirror of
https://git.freebsd.org/ports.git
synced 2025-05-20 02:53:10 -04:00
27 lines
539 B
C
27 lines
539 B
C
--- compface/uncompface.c.orig
|
|
+++ compface/uncompface.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
|
|
-uncompface(char *fbuf)
|
|
+uncompface(fbuf)
|
|
+char *fbuf;
|
|
{
|
|
- if (!(status = setjmp(comp_env))) {
|
|
- UnCompAll(fbuf); /* compress otherwise */
|
|
+ if (!(status = setjmp(comp_env)))
|
|
+ {
|
|
+ UnCompAll(fbuf);/* compress otherwise */
|
|
UnGenFace();
|
|
WriteFace(fbuf);
|
|
}
|
|
- return(status);
|
|
+ return status;
|
|
}
|