mirror of https://github.com/fltk/fltk
Add prototype for snprintf() in Fl_FileBrowser.cxx.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1549 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
03b112773d
commit
00f126367d
|
@ -1,5 +1,5 @@
|
|||
//
|
||||
// "$Id: Fl_FileBrowser.cxx,v 1.13.2.2 2001/08/03 18:46:57 easysw Exp $"
|
||||
// "$Id: Fl_FileBrowser.cxx,v 1.13.2.3 2001/08/03 19:45:58 easysw Exp $"
|
||||
//
|
||||
// Fl_FileBrowser routines.
|
||||
//
|
||||
|
@ -55,6 +55,12 @@
|
|||
#include <os2.h>
|
||||
#endif /* __EMX__ */
|
||||
|
||||
#if !HAVE_SNPRINTF
|
||||
extern "C" {
|
||||
extern int snprintf(char* str, size_t size, const char* fmt, ...);
|
||||
}
|
||||
#endif // !HAVE_SNPRINTF
|
||||
|
||||
|
||||
//
|
||||
// FL_BLINE definition from "Fl_Browser.cxx"...
|
||||
|
@ -557,5 +563,5 @@ Fl_FileBrowser::filter(const char *pattern) // I - Pattern string
|
|||
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_FileBrowser.cxx,v 1.13.2.2 2001/08/03 18:46:57 easysw Exp $".
|
||||
// End of "$Id: Fl_FileBrowser.cxx,v 1.13.2.3 2001/08/03 19:45:58 easysw Exp $".
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue