* include/libmes.h (__mes_debug): Declare.
* lib/libtcc1.c: Add proper includes.
* lib/linux+gnu.c: Likewise.
* lib/m4.c: Likewise.
#ifndef __MES_LIBMES_H
#define __MES_LIBMES_H
+int __mes_debug ();
char const* number_to_ascii (int number, int base, int signed_p);
char const* itoa (int number);
char const* utoa (unsigned number);
int
isxdigit (int c)
{
- return isdigit (c) || c >= 'a' && c <= 'f';
+ return isdigit (c) || (c >= 'a' && c <= 'f');
}
int
* along with Mes. If not, see <http://www.gnu.org/licenses/>.
*/
+#include <libmes.h>
+
double
__divdi3 (double a, double b)
{
return 0;
}
-#if __TINYC__ == 9227
-int
#if __TINYC__ == 9226
long
-#else
-long long
+#elif __TINYC__
int
-#endif // __TINYC__ == 9226
-#endif // __TINYC__ == 9227
+#else // !__TINYCC_
+long long
+#endif // !__TINYCC_
__fixdfdi (double a1)
{
static int stub = 0;
#define SYS_fstat 0x6c
#define SYS_nanosleep 0xa2
+#include <sys/resource.h>
int
link (char const *old_name, char const *new_name)
* along with Mes. If not, see <http://www.gnu.org/licenses/>.
*/
+#include <ctype.h>
+
int
abort ()
{