mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-07-15 21:27:18 +03:00
Few configure.ac adjustments
- Use the extensions autoconf finds for object and executable files. - Remove the sorev variable, and replace SOREV definition with sorev's. - Default to je_ prefix on win32.
This commit is contained in:
parent
a14bce85e8
commit
7cdea3973c
3 changed files with 9 additions and 15 deletions
|
|
@ -161,9 +161,9 @@ get_errno(void)
|
|||
{
|
||||
|
||||
#ifdef _WIN32
|
||||
return GetLastError();
|
||||
return (GetLastError());
|
||||
#else
|
||||
return errno;
|
||||
return (errno);
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue