summaryrefslogtreecommitdiff
path: root/atari
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2011-03-20 22:43:07 +0000
committerOle Loots <ole@monochrom.net>2011-03-20 22:43:07 +0000
commit740d3298fa718fa4b34b1dd9f9c3281ce8f00e7a (patch)
treebc6b6742fe1fffba2178a0dd7cd09bcc6c19e361 /atari
parentea0e023e3759beb6b302029a0ef1e9dfb4801e62 (diff)
downloadnetsurf-740d3298fa718fa4b34b1dd9f9c3281ce8f00e7a.tar.gz
netsurf-740d3298fa718fa4b34b1dd9f9c3281ce8f00e7a.tar.bz2
Added missing prototypes.
svn path=/trunk/netsurf/; revision=12113
Diffstat (limited to 'atari')
-rwxr-xr-xatari/misc.h3
-rwxr-xr-xatari/schedule.c2
-rwxr-xr-xatari/treeview.h2
3 files changed, 6 insertions, 1 deletions
diff --git a/atari/misc.h b/atari/misc.h
index 959491c26..7771fc962 100755
--- a/atari/misc.h
+++ b/atari/misc.h
@@ -36,4 +36,7 @@ OBJECT *get_tree( int idx );
char *get_rsc_string( int idx );
void gem_set_cursor( MFORM_EX * cursor );
void dbg_grect( char * str, GRECT * r );
+void * ldg_open( char * name, short * global );
+void * ldg_find( char * name, short * ldg );
+int ldg_close( void * ldg, short * global );
#endif \ No newline at end of file
diff --git a/atari/schedule.c b/atari/schedule.c
index 17ea95dcd..cc3c90a45 100755
--- a/atari/schedule.c
+++ b/atari/schedule.c
@@ -16,6 +16,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#include <stdlib.h>
+#include <string.h>
#include <sys/time.h>
#include <time.h>
diff --git a/atari/treeview.h b/atari/treeview.h
index c1d35fdf0..f5f16a57a 100755
--- a/atari/treeview.h
+++ b/atari/treeview.h
@@ -40,7 +40,7 @@ struct atari_treeview
typedef struct atari_treeview * NSTREEVIEW;
-NSTREEVIEW atari_treeview_create( uint32_t flags, WINDOW * win ) ;
+NSTREEVIEW atari_treeview_create( uint32_t flags, WINDOW * win );
void atari_treeview_destroy( NSTREEVIEW tv );
void atari_treeview_open( NSTREEVIEW tv );
void atari_treeview_close( NSTREEVIEW tv );