2000-08-28 03:27:03 +08:00
|
|
|
/**
|
2002-11-19 23:07:08 +08:00
|
|
|
* \file rpmio/stubs.c
|
2000-08-28 03:27:03 +08:00
|
|
|
*/
|
|
|
|
|
1999-11-27 08:15:07 +08:00
|
|
|
/* XXX Portable shared libraries require rpmlib to contain these functions. */
|
|
|
|
|
|
|
|
#include "system.h"
|
|
|
|
|
|
|
|
#if !defined(HAVE_STPCPY)
|
|
|
|
#include "misc/stpcpy.c"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(HAVE_STPNCPY)
|
|
|
|
#include "misc/stpncpy.c"
|
|
|
|
#endif
|
|
|
|
|
2000-03-11 04:49:09 +08:00
|
|
|
#if defined(USE_GNU_GLOB)
|
2005-01-28 14:36:29 +08:00
|
|
|
#include "misc/fnmatch.h"
|
2000-03-12 04:14:07 +08:00
|
|
|
#include "misc/fnmatch.c"
|
2005-01-28 14:36:29 +08:00
|
|
|
#include "misc/glob.h"
|
2000-03-11 04:49:09 +08:00
|
|
|
#include "misc/glob.c"
|
|
|
|
#endif
|