1/*
2 * Copyright 2002-2012 Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _DIV_T_H_
6#define _DIV_T_H_
7
8
9typedef struct {
10	int	quot;
11	int	rem;
12} div_t;
13
14typedef struct {
15	long quot;
16	long rem;
17} ldiv_t;
18
19typedef struct {
20	long long quot;
21	long long rem;
22} lldiv_t;
23
24#endif /* _DIV_T_H_ */
25