source: trunk/libs/newlib/src/newlib/libc/machine/w65/cmpsi.c @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 370 bytes
Line 
1
2union u {
3  struct {
4  short int msw;
5  unsigned short lsw;
6} w;
7long l;
8};
9
10int
11__cmpsi2(long arga,
12         short int msw_b, unsigned short int lsw_b)
13{
14  union u u;
15  u.l = arga;
16
17  if (u.w.msw != msw_b)
18    {
19      if (u.w.msw < msw_b) return 0;
20      return 2;
21    }
22  if (u.w.lsw != lsw_b) 
23    {
24      if (u.w.lsw < lsw_b) return 0;
25      return 2;
26    }
27  return 1;
28}
Note: See TracBrowser for help on using the repository browser.