repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Make UEFI boot-platform build again
[haiku.git]
/
headers
/
posix
/
div_t.h
blob
94b783225ad357beafa8bc705da48e7a5bf00203
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
9
typedef
struct
{
10
int
quot
;
11
int
rem
;
12
}
div_t
;
13
14
typedef
struct
{
15
long
quot
;
16
long
rem
;
17
}
ldiv_t
;
18
19
typedef
struct
{
20
long long
quot
;
21
long long
rem
;
22
}
lldiv_t
;
23
24
#endif
/* _DIV_T_H_ */