Skip to content
Snippets Groups Projects
Commit dc7c2e46 authored by Vincent Béron's avatar Vincent Béron Committed by Alexandre Julliard
Browse files

Added msvcrt headers limits.h and math.h.

parent 1fc035d2
No related branches found
No related tags found
No related merge requests found
......@@ -212,8 +212,10 @@ MSVCRT_INCLUDES = \
msvcrt/errno.h \
msvcrt/fcntl.h \
msvcrt/io.h \
msvcrt/limits.h \
msvcrt/locale.h \
msvcrt/malloc.h \
msvcrt/math.h \
msvcrt/mbctype.h \
msvcrt/mbstring.h \
msvcrt/process.h \
......
#ifndef __WINE_LIMITS_H
#define __WINE_LIMITS_H
#define INT_MAX 2147483647
#define INT_MIN (-2147483648)
#define SHRT_MAX 32767
#define SHRT_MIN (-32768)
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
}
#endif
#endif /* __WINE_LIMITS_H */
#ifndef __WINE_MATH_H
#define __WINE_MATH_H
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
}
#endif
#endif /* __WINE_MATH_H */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment