Skip to content

Instantly share code, notes, and snippets.

@migueldeicaza
Created January 21, 2010 17:55
Show Gist options
  • Save migueldeicaza/282995 to your computer and use it in GitHub Desktop.
Save migueldeicaza/282995 to your computer and use it in GitHub Desktop.
In file: mono-stdint.h
#ifdef HAVE_STDINT_H
# include<stdint.h>
#else
# if MONO_OPT_IN_STDINT_TYPES
# include <mono/mono-stdint-detected.h>
# else
# error You need to either provide your stdint.h/HAVE_STDINT_H or define MONO_OPT_IN_STDINT_TYPES in your source
# endif
#endif
In file mono/mono-types.h.in
/* This file is processed by configure */
typedef @INT32_T@ int32_t
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment