Moving includes to header file for fsedit

This commit is contained in:
Ken Bowley 2001-10-24 05:29:16 +00:00
parent b3e3995c0c
commit 300adf8656
2 changed files with 16 additions and 12 deletions

View File

@ -29,18 +29,6 @@
* Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*****************************************************************************/
#include "../lib/libs.h"
#include "../lib/mbse.h"
#include "../lib/structs.h"
#include "../lib/records.h"
#include "../lib/ansi.h"
#include "../lib/common.h"
#include "../lib/clcomm.h"
#include "mail.h"
#include "funcs4.h"
#include "language.h"
#include "timeout.h"
#include "pinfo.h"
#include "fsedit.h"

View File

@ -1,6 +1,22 @@
#ifndef _FSEDIT_H
#define _FSEDIT_H
/* Includes needed for fsedit.c */
#include "../lib/libs.h"
#include "../lib/mbse.h"
#include "../lib/structs.h"
#include "../lib/records.h"
#include "../lib/ansi.h"
#include "../lib/common.h"
#include "../lib/clcomm.h"
#include "mail.h"
#include "funcs4.h"
#include "language.h"
#include "timeout.h"
#include "pinfo.h"
int Fs_Edit(void); /* The fullscreen message editor */
extern int Line; /* Number of lines + 1 */