Added missing properties.
[tangerine.git] / workbench / c / QuitAROS.c
blob9297737cf276be198362ea1ebd1ec4fa6ff8b961
1 #include <proto/exec.h>
3 int main(void)
5 struct MsgPort *port;
7 Forbid();
8 if ((port = FindPort("AROS Hosted Power Switch")))
10 Signal((struct Task *)port->mp_SigTask, 1L << port->mp_SigBit);
12 Permit();
14 return 0;