diff options
author | Robert Haas <rhaas@postgresql.org> | 2015-01-20 10:52:01 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2015-01-20 10:52:01 -0500 |
commit | f32a1fa462c88676105445f26885d7a0656b6806 (patch) | |
tree | d27d833278e9363f65e9aa91e258a07253c34913 /src | |
parent | aa719391d5537d30068109e1f96991d0e2c7dfc5 (diff) | |
download | postgresql-f32a1fa462c88676105445f26885d7a0656b6806.tar.gz postgresql-f32a1fa462c88676105445f26885d7a0656b6806.zip |
Add strxfrm_l to list of functions where Windows adds an underscore.
Per buildfarm failure on bowerbird after last night's commit
4ea51cdfe85ceef8afabceb03c446574daa0ac23.
Peter Geoghegan
Diffstat (limited to 'src')
-rw-r--r-- | src/include/port/win32.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/port/win32.h b/src/include/port/win32.h index 550c3ecff42..4cb51ec7bea 100644 --- a/src/include/port/win32.h +++ b/src/include/port/win32.h @@ -341,6 +341,7 @@ typedef int pid_t; #define isspace_l _isspace_l #define iswspace_l _iswspace_l #define strcoll_l _strcoll_l +#define strxfrm_l _strxfrm_l #define wcscoll_l _wcscoll_l #define wcstombs_l _wcstombs_l #define mbstowcs_l _mbstowcs_l |