summaryrefslogtreecommitdiff
path: root/tests/test/tendian1.pp
blob: 702ec8152d08f1e2490533428c533373fa92f535 (plain)
1
2
3
4
5
6
7
8
9
10
var
  l : dword;
begin
  l:=$deadbeef;
  if SwapEndian(l)=l then
    halt(1);
  if SwapEndian(SwapEndian(l))<>l then
    halt(1);
  writeln('ok');
end.