Make UEFI boot-platform build again
[haiku.git] / headers / posix / div_t.h
blob94b783225ad357beafa8bc705da48e7a5bf00203
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_
9 typedef struct {
10 int quot;
11 int rem;
12 } div_t;
14 typedef struct {
15 long quot;
16 long rem;
17 } ldiv_t;
19 typedef struct {
20 long long quot;
21 long long rem;
22 } lldiv_t;
24 #endif /* _DIV_T_H_ */