Commit fa84ea25 authored by Alexandre Julliard's avatar Alexandre Julliard

libwine: Move the wine_fold_string implementation to libwine_port.

parent d59d45e4
......@@ -3,6 +3,7 @@ STATICLIB = libwine_port.a
C_SRCS = \
digitmap.c \
ffs.c \
fold.c \
fstatvfs.c \
getopt.c \
getopt1.c \
......
......@@ -81,7 +81,6 @@ C_SRCS = \
config.c \
cptable.c \
debug.c \
fold.c \
ldt.c \
loader.c \
mbtowc.c \
......
......@@ -25,8 +25,15 @@
#include <string.h>
#include <sys/types.h>
#include "wine/unicode.h"
#include "wine/library.h"
/* functions from libwine_port that are also exported from libwine for backwards compatibility */
const void *libwine_port_functions[] =
{
wine_fold_string
};
/* no longer used, for backwards compatibility only */
struct wine_pthread_functions;
static void *pthread_functions[8];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment