From e3d9d8dfdc6b78646112f8215ef9b91aba574f5f Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Wed, 10 Jul 2013 12:15:32 +0000 Subject: * cygwin.sc.in (.text.*): Fold into .text on all platforms. (.eh_frame): Add section. * environ.cc (my_findenv): Drop __stdcall attribute. (getearly): Ditto. (findenv_func): Drop cast. --- winsup/cygwin/environ.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'winsup/cygwin/environ.cc') diff --git a/winsup/cygwin/environ.cc b/winsup/cygwin/environ.cc index 5e522b91f..71d15b63d 100644 --- a/winsup/cygwin/environ.cc +++ b/winsup/cygwin/environ.cc @@ -470,7 +470,7 @@ posify_maybe (char **here, const char *value, char *outenv) environment array, for use by setenv(3) and unsetenv(3). Explicitly removes '=' in argument name. */ -static char * __stdcall +static char * my_findenv (const char *name, int *offset) { register int len; @@ -498,7 +498,7 @@ my_findenv (const char *name, int *offset) /* Primitive getenv before the environment is built. */ -static char __stdcall * +static char * getearly (const char * name, int *) { char *ret; @@ -520,7 +520,7 @@ getearly (const char * name, int *) return NULL; } -static char * (*findenv_func)(const char *, int *) = (char * (*)(const char *, int *)) getearly; +static char * (*findenv_func)(const char *, int *) = getearly; /* Returns ptr to value associated with name, if any, else NULL. */ -- cgit v1.2.3