Annotation of embedaddon/libiconv/libcharset/lib/relocatable-stub.c, revision 1.1
1.1 ! misho 1: /* Provide relocatable packages.
! 2: Copyright (C) 2018 Free Software Foundation, Inc.
! 3: Written by Bruno Haible <bruno@clisp.org>, 2018.
! 4:
! 5: This program is free software; you can redistribute it and/or modify it
! 6: under the terms of the GNU Library General Public License as published
! 7: by the Free Software Foundation; either version 2, or (at your option)
! 8: any later version.
! 9:
! 10: This program is distributed in the hope that it will be useful,
! 11: but WITHOUT ANY WARRANTY; without even the implied warranty of
! 12: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
! 13: Library General Public License for more details.
! 14:
! 15: You should have received a copy of the GNU Library General Public License
! 16: along with this program; if not, see <https://www.gnu.org/licenses/>. */
! 17:
! 18: #include <config.h>
! 19:
! 20: #include "libcharset.h"
! 21:
! 22: extern LIBCHARSET_DLL_EXPORTED void
! 23: libcharset_set_relocation_prefix (const char *orig_prefix, const char *curr_prefix);
! 24:
! 25: /* This is a stub for binary backward-compatibility. */
! 26: void
! 27: libcharset_set_relocation_prefix (const char *orig_prefix, const char *curr_prefix)
! 28: {
! 29: }
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>