Changeset 1214 for trunk/src/kash/histedit.c
- Timestamp:
- Oct 7, 2007, 10:39:58 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kash/histedit.c
r1209 r1214 33 33 */ 34 34 35 #ifdef HAVE_SYS_CDEFS_H 36 #include <sys/cdefs.h> 37 #endif 35 #if 0 38 36 #ifndef lint 39 #if 040 37 static char sccsid[] = "@(#)histedit.c 8.2 (Berkeley) 5/4/95"; 41 38 #else 42 39 __RCSID("$NetBSD: histedit.c,v 1.36 2005/05/09 11:35:19 christos Exp $"); 40 #endif /* not lint */ 43 41 #endif 44 #endif /* not lint */ 45 46 #include <sys/param.h> 47 #ifndef __sun__ 48 #include <paths.h> 49 #endif 42 50 43 #include <stdio.h> 51 44 #include <stdlib.h> 52 #include <unistd.h> 45 53 46 /* 54 47 * Editline and history functions (and glue). … … 63 56 #include "myhistedit.h" 64 57 #include "error.h" 58 65 59 #ifndef SMALL 66 60 #include "eval.h" … … 535 529 return (he.num); 536 530 } 537 #else 531 #else /* SMALL */ 538 532 int 539 533 histcmd(shinstance *psh, int argc, char **argv) … … 550 544 return -1; 551 545 } 552 #endif 546 #endif /* SMALL */
Note:
See TracChangeset
for help on using the changeset viewer.