grub2: bring back build of aros-side grub2 tools
[AROS.git] / workbench / libs / rexxsupport / null.c
blob612012b6e1f2a1d6780cd1606c606a6782d8a3e6
1 /*
2 Copyright © 1995-2006, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Returns NULL pointer
6 Lang: English
7 */
9 #include <proto/exec.h>
10 #include <proto/rexxsyslib.h>
11 #include <exec/types.h>
12 #include <exec/memory.h>
13 #include <rexx/storage.h>
14 #include <rexx/errors.h>
16 #include <ctype.h>
17 #include <stdlib.h>
19 #include "rexxsupport_intern.h"
20 #include "rxfunctions.h"
22 LONG rxsupp_null(struct Library *RexxSupportBase, struct RexxMsg *msg, UBYTE **argstring)
24 void *ptr = NULL;
26 *argstring = CreateArgstring((UBYTE *)&ptr, sizeof(void *));
27 return 0;