• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**
2  * This file has no copyright assigned and is placed in the Public Domain.
3  * This file is part of the mingw-w64 runtime package.
4  * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5  */
6 
7 #include <_mingw.h>
8 
9 extern int* __MINGW_IMP_SYMBOL(__mb_cur_max);
10 
11 int __cdecl ___mb_cur_max_func(void);
___mb_cur_max_func(void)12 int __cdecl ___mb_cur_max_func(void)
13 {
14     return *__MINGW_IMP_SYMBOL(__mb_cur_max);
15 }
16 
17 typedef int __cdecl (*_f___mb_cur_max_func)(void);
18 _f___mb_cur_max_func __MINGW_IMP_SYMBOL(___mb_cur_max_func) = ___mb_cur_max_func;
19