23 lines
384 B
C
23 lines
384 B
C
/**
|
|
* \file rpmio/stubs.c
|
|
*/
|
|
|
|
/* 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
|
|
|
|
#if defined(USE_GNU_GLOB)
|
|
#include "misc/fnmatch.h"
|
|
#include "misc/fnmatch.c"
|
|
#include "misc/glob.h"
|
|
#include "misc/glob.c"
|
|
#endif
|