ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/mports/trunk/mail/faces/files/patch-cd
Revision: 16349
Committed: Sun Apr 20 18:32:36 2014 UTC (10 years ago) by laffer1
File size: 756 byte(s)
Log Message:
remove cvs2svn:cvs-rev prop

File Contents

# Content
1 *** compface/compface.c Thu Feb 21 16:42:54 2002
2 --- /home/lkoeller/tmp/ports/mail/faces/work/faces/compface/compface.c Wed Jun 19 08:29:12 1991
3 ***************
4 *** 14,29 ****
5 * to me, then an attempt will be made to fix them.
6 */
7
8 #include "compface.h"
9 - #include "vars.h"
10
11 int
12 ! compface(char *fbuf)
13 {
14 ! if (!(status = setjmp(comp_env))) {
15 ReadFace(fbuf);
16 GenFace();
17 CompAll(fbuf);
18 }
19 ! return(status);
20 }
21 --- 13,31 ----
22 * to me, then an attempt will be made to fix them.
23 */
24
25 + #define MAIN
26 +
27 #include "compface.h"
28
29 int
30 ! compface(fbuf)
31 ! char *fbuf;
32 {
33 ! if (!(status = setjmp(comp_env)))
34 ! {
35 ReadFace(fbuf);
36 GenFace();
37 CompAll(fbuf);
38 }
39 ! return status;
40 }