File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / libiconv / libcharset / lib / relocatable-stub.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Mar 17 13:38:46 2021 UTC (4 years ago) by misho
Branches: libiconv, MAIN
CVS tags: v1_16p0, HEAD
libiconv 1.16

    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>