Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports
Path: blob/main/comms/echolinux/files/patch-echogui_testgui__cb.c
18157 views
1
--- echogui/testgui_cb.c.orig 2006-02-24 19:28:15 UTC
2
+++ echogui/testgui_cb.c
3
@@ -8,13 +8,16 @@ $Log$
4
5
****************************/
6
7
+#include <stdlib.h>
8
#include <string.h>
9
+#include <unistd.h>
10
#include <sys/wait.h>
11
+#include <sys/time.h>
12
#include <sys/types.h>
13
-#include <linux/soundcard.h>
14
+#include <sys/soundcard.h>
15
#include <sys/ioctl.h>
16
#include <fcntl.h>
17
-#include <X11/forms.h>
18
+#include <forms.h>
19
#include <math.h>
20
#include <signal.h>
21
#include <pthread.h>
22
@@ -429,6 +432,7 @@ int searchClose(FL_FORM *form, void *data){
23
24
// puts("In searchclose()");
25
fl_hide_form(fd_searchForm->searchForm);
26
+ return (0);
27
}
28
29
/**********************/
30
31