mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 09:09:19 +02:00
* WII: added Timeval record for libogc compatibility
git-svn-id: trunk@19774 -
This commit is contained in:
parent
0012aa613b
commit
8feff2bf86
@ -31,7 +31,12 @@ type
|
|||||||
tm_isdst: longint;
|
tm_isdst: longint;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Ptimeval = ^Ttimeval;
|
||||||
|
Ttimeval = record
|
||||||
|
tv_sec : longint;
|
||||||
|
tv_usec : longint;
|
||||||
|
end;
|
||||||
|
Timeval = TTimeval;
|
||||||
(* Some libc functions *)
|
(* Some libc functions *)
|
||||||
//function printf(format: Pchar; args: array of const): longint; cdecl; external;
|
//function printf(format: Pchar; args: array of const): longint; cdecl; external;
|
||||||
function printf(format: Pchar): longint; cdecl; varargs; external;
|
function printf(format: Pchar): longint; cdecl; varargs; external;
|
||||||
|
Loading…
Reference in New Issue
Block a user