1
1

* fixhlp.c: fixed compile errors and warnings

Этот коммит содержится в:
Pavel Roskin 2000-09-01 18:49:01 +00:00
родитель 8800ca2bbf
Коммит ec00659ad4
2 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -1,3 +1,7 @@
2000-09-01 Pavel Roskin <proski@gnu.org>
* fixhlp.c: fixed compile errors and warnings
2000-08-30 Pavel Roskin <proski@gnu.org>
* dirhist.c, dirhist.h: removed

Просмотреть файл

@ -21,6 +21,7 @@
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include "global.h"
#include "help.h"
static int width; /* Output width in characters */
@ -92,8 +93,6 @@ int string_len (char *buffer)
void print_string (char *buffer)
{
int len; /* The length of current word */
int i; /* Index */
int c; /* Current character */
char *p;
/* Split into words */
@ -162,7 +161,6 @@ int main (int argc, char **argv)
{
int len; /* Length of input line */
char buffer [BUF_LARGE]; /* Input line */
int i, j;
char *p;
int ignore_newline = 0;