*Defined in /sys/cmdparse.h

/*
 * NORMAL_ACCESS
 *
 * test for access to object
 *
 * Arguments:
 *            arr     array from parse_command to test (arr[0] gives numeric or
 *                    order info).
 *
 *            acsfunc function to use in filter to filter objects in arr
 *
 *            acsobj  object use to call acsfunc
 *
 * Returns:
 *            An array holding all objects satisfying arr[0] and acsfunc.
 */
#define NORMAL_ACCESS(arr, acsfunc, acsobj) \
  (object *) call_other(CMDPARSE_STD, "normal_access", arr, acsfunc, acsobj)

