/* ******************************************* */
/* Include file for ROBIOS user functinos      */
/* Petter Reinholdtsen, UWA 1999               */
/* ******************************************* */

#ifndef librobo_impl_h
#define librobo_impl_h

/*
 These macros are used in C implementaion of functions available from
 user-level programs.  It enables autogeneration of prototype and stub
 files.  stubs.h is then include in the generated stubs file to get a
 working stub.
*/

#define USER_FUNC(package, name, offset, ret, proto) \
ret package ## _ ## name proto

#endif /* librobo_impl_h */

