fixed some implicit declarations reported by Stanislav Brabec
authorArun Persaud <arun@nubati.net>
Tue, 8 Sep 2009 16:01:07 +0000 (09:01 -0700)
committerArun Persaud <arun@nubati.net>
Tue, 8 Sep 2009 16:07:16 +0000 (09:07 -0700)
backend.c
backend.h
xoptions.c

index 90021ce..ccb28ec 100644 (file)
--- a/backend.c
+++ b/backend.c
@@ -151,7 +151,6 @@ void SendToICS P((char *s));
 void SendToICSDelayed P((char *s, long msdelay));
 void SendMoveToICS P((ChessMove moveType, int fromX, int fromY,
                      int toX, int toY));
-void InitPosition P((int redraw));
 void HandleMachineMove P((char *message, ChessProgramState *cps));
 int AutoPlayOneMove P((void));
 int LoadGameOneMove P((ChessMove readAhead));
index f02835f..8a0b184 100644 (file)
--- a/backend.h
+++ b/backend.h
@@ -189,6 +189,8 @@ void GetMoveListEvent P((void));
 void ExitAnalyzeMode P((void));
 void AnalyzeModeEvent P((void));
 void AnalyzeFileEvent P((void));
+void InitPosition P((int redraw));
+void NewSettingEvent P((int option, char *command, int value));
 void DoEcho P((void));
 void DontEcho P((void));
 void TidyProgramName P((char *prog, char *host, char *buf));
index da6a825..342246c 100644 (file)
@@ -78,6 +78,9 @@ extern char *getenv();
 # define N_(s)  s
 #endif
 
+extern void SendToProgram P((char *message, ChessProgramState *cps));
+
+
 extern Widget formWidget, shellWidget, boardWidget, menuBarWidget;
 extern Display *xDisplay;
 extern int squareSize;
@@ -1749,4 +1752,4 @@ void XXXMenuProc(w, event, prms, nprms)
 {
    XXXPopUp();
 }
-#endif
\ No newline at end of file
+#endif