Fixed incorrect bit number for SMB_AUTOSCROLL. Fortunately it isn't used
[AROS.git] / test / library / dummytest_auto.c
blob4e2446754e61e6a451a3e04ec926979c7775696e
1 /*
2 Copyright © 1995-2008, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <proto/exec.h>
7 #include <proto/dos.h>
8 #include <proto/dummy.h>
10 int main (int argc, char ** argv)
12 ULONG a=1,b=2,c=0,d=0;
14 c=add(a,b);
16 d=asl(a,b);
18 Printf((STRPTR)"%ld+%ld=%ld\n",a, b ,c);
20 Printf((STRPTR)"%ld<<%ld=%ld\n",a, b, d);
22 Flush (Output ());
24 return 0;