]> Zhao Yanbai Git Server - minix.git/commitdiff
elle: minor changes to compile with non-ack.
authorBen Gras <ben@minix3.org>
Mon, 12 Jul 2010 20:09:03 +0000 (20:09 +0000)
committerBen Gras <ben@minix3.org>
Mon, 12 Jul 2010 20:09:03 +0000 (20:09 +0000)
commands/elle/Makefile
commands/elle/eefd.c
commands/elle/eemain.c
commands/elle/eeproto.h

index 8f26e34097456d8650639fe58473fd10e0a424ef..8cc771897b3f2f4e5efba18ed815226218a52aef 100644 (file)
@@ -1,9 +1,5 @@
 # Makefile for elle
 
-# XXX: Can only be built with ACK currently
-CC:=${CC:C/^gcc/cc/}
-COMPILER_TYPE:=ack
-
 PROGS= ellec elle
 SRCS.elle= eemain.c eecmds.c eesite.c eevini.c eedisp.c eeterm.c eeerr.c  \
       eeques.c eebuff.c eefile.c eefed.c eeedit.c eebit.c eef1.c \
index 8c169fbdb88063c9b671b99b1fca74a6a3fa3703..1335d578ea9afdd5a2369a6c91c4a61595188fcf 100644 (file)
@@ -9,6 +9,8 @@
 
 #include "elle.h"
 
+static void moveborder(int);
+
 
 #if FX_NEWWIN
 /* EFUN: "New Window" */
@@ -118,7 +120,6 @@ f_scdnwind()
 /* EFUN: "Move to Window Top" (not EMACS) - from IMAGEN config */
 f_mvwtop()
 {
-       extern moveborder();
        moveborder(1);
 }
 #endif /*FX_MVWTOP*/
@@ -127,7 +128,6 @@ f_mvwtop()
 /* EFUN: "Move to Window Bottom" (not EMACS) - from IMAGEN config */
 f_mvwbot()
 {
-       extern moveborder();
        moveborder(0);
 }
 #endif /*FX_MVWBOT*/
@@ -202,7 +202,7 @@ register int n;
 #endif /* FX_SC%%WIND */
 
 #if FX_MVWTOP || FX_MVWBOT     /* Guts for above two functions */
-static
+static void
 moveborder(top)
 int top;
 {
index f457858eeae96e825fb696aa84b0dd4a70b2cd51..7241da74edc7983a6862097c145fb3f67563f9f1 100644 (file)
@@ -437,6 +437,8 @@ f_pshinf()
        redp(RD_SCREEN|RD_MODE);        /* Done, redisplay */
 }
 \f
+
+#if 0
 /* Miscellaneous utility routines - memory alloc/free and string hacking.
  * If this page becomes overly large, it can be split off into a separate
  * file called E_MISC.
@@ -447,6 +449,7 @@ char *s;    /* Note that STRCPY's return val must be its 1st arg */
 {      char *strcpy();
        return(strcpy(memalloc((SBMO)(strlen(s)+1)), s));
 }
+#endif
 
 char *
 memalloc(size)
index f1c5220e2a2c705aebaa80f1b75fb59864b4eaef..e2628c6f4b6087ba0760c777e196dd842ca821e5 100644 (file)
@@ -341,7 +341,6 @@ _PROTOTYPE( int ring_bell, (void) );
 _PROTOTYPE( int f_retsup, (void) );
 _PROTOTYPE( int f_wfexit, (void) );
 _PROTOTYPE( int f_pshinf, (void) );
-_PROTOTYPE( char *strdup, (char *s) );
 _PROTOTYPE( char *memalloc, (SBMO size) );
 _PROTOTYPE( int chkfree, (SBMA ptr) );
 _PROTOTYPE( int ustrcmp, (char *str1, char *str2) );