* delphi style imports

This commit is contained in:
peter 2003-04-23 08:13:04 +00:00
parent 47489f2376
commit ad27d96dc3

18
tests/tbs/tb0452.pp Normal file
View File

@ -0,0 +1,18 @@
{ %version=1.1 }
{ %target=linux }
unit tb0452;
{$mode delphi}
interface
function sem_open(__name: PChar; __oflag: Integer): Pointer; cdecl; varargs;
implementation
const
libpthreadmodulename = 'libpthread.so';
function sem_open; external libpthreadmodulename name 'sem_open';
end.