Files
haiku-beta6/headers/posix/div_t.h
T

23 lines
284 B
C
Raw Normal View History

2002-10-24 19:52:59 +00:00
#ifndef _DIV_T_H_
#define _DIV_T_H_
2002-10-25 22:02:50 +00:00
/*
** Distributed under the terms of the OpenBeOS License.
*/
2002-10-24 19:52:59 +00:00
typedef struct {
int quot;
int rem;
} div_t;
typedef struct {
long quot;
long rem;
} ldiv_t;
2002-10-25 22:02:50 +00:00
typedef struct {
long long quot;
long long rem;
} lldiv_t;
2002-10-24 19:52:59 +00:00
#endif /* _DIV_T_H_ */