1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

dtappbuilder: fix implicit-function-declaration warnings

With the exception of the yy* issues.  Can resolve those at a later
time.
This commit is contained in:
Jon Trulson 2021-11-16 15:21:36 -07:00
parent 0ee97b3645
commit fd53532bcf
5 changed files with 14 additions and 0 deletions

View file

@ -71,6 +71,10 @@
static BOOL save_needed_enabled = TRUE;
// obj_fields.c
int obj_get_textpane_width(ABObj obj);
int obj_get_textpane_height(ABObj obj);
/*************************************************************************
** **
** Private Function Declarations **

View file

@ -46,6 +46,7 @@
#include <X11/Xlib.h>
#include <Xm/Xm.h>
#include <Xm/DrawingA.h>
#include <Xm/ScrollBar.h>
#include <ab_private/util.h>
#include <ab_private/obj.h>
#include <ab_private/trav.h>

View file

@ -77,6 +77,10 @@ static int print_startup_time(ABProfiledInterval totalTime);
static ABProfiledIntervalRec startupTime;
#endif /* DEBUG/performance */
void ab_set_busy_cursor(BOOL on); // ab_utils.c
int abobj_instantiate_tree(ABObj root, BOOL manage_last); // abobj_util.c
/*****************************************************************************
** **
** Private Function Declarations **

View file

@ -57,6 +57,7 @@
#include "stubs_c_fileP.h"
#include "lib_func_stringsP.h"
#include "proj_c_fileP.h"
#include "connectP.h"
/*************************************************************************
** **

View file

@ -66,6 +66,10 @@
#define SELECT_OBJ_KEY "__selected__"
// obj_fields.c
int obj_get_textpane_width(ABObj obj);
int obj_get_textpane_height(ABObj obj);
/*************************************************************************
** **