historical/toontown-classic.git/panda/include/parser-inc/cstdlib

22 lines
240 B
Text
Raw Normal View History

2024-01-16 11:20:27 -06:00
#pragma once
#include <stdlib.h>
namespace std {
struct div_t {
int quot, rem;
};
struct ldiv_t {
long quot, rem;
};
struct lldiv_t {
long long quot, rem;
};
struct imaxdiv_t {
long long quot, rem;
};
}