1
1

* mountlist.c: Restore sys/param.h before sys/mount.h - it's

required on FreeBSD.
Reported by Pavel Shirshov <pavelsh@mail.ru>
Этот коммит содержится в:
Pavel Roskin 2002-09-24 22:19:32 +00:00
родитель e98d979a69
Коммит 9fb801ccd6
2 изменённых файлов: 9 добавлений и 0 удалений

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

@ -1,5 +1,9 @@
2002-09-24 Pavel Roskin <proski@gnu.org>
* mountlist.c: Restore sys/param.h before sys/mount.h - it's
required on FreeBSD.
Reported by Pavel Shirshov <pavelsh@mail.ru>
* screen.c (panel_event): Implement support for mouse wheel.
* view.c (display): Fix wrapping of tabs.

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

@ -22,6 +22,11 @@
#include <sys/types.h>
#include <stdio.h>
/* This header needs to be included before sys/mount.h on *BSD */
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#if defined (MOUNTED_GETFSSTAT) /* __alpha running OSF_1 */
#include <sys/mount.h>
#include <sys/fs_types.h>