**********************************************************************/
#ifdef _USC_LIB_
-extern int TEST_RETURN;
+extern long TEST_RETURN;
extern int TEST_ERRNO;
#else
* Globals for returning the return code and errno from the system call
* test macros.
***********************************************************************/
-extern int TEST_RETURN;
+extern long TEST_RETURN;
extern int TEST_ERRNO;
/***********************************************************************
* SCALL = system call and parameters to execute
*
***********************************************************************/
-#define TEST(SCALL) TEST_RETURN = (unsigned) SCALL; TEST_ERRNO=errno;
+#define TEST(SCALL) TEST_RETURN = SCALL; TEST_ERRNO=errno;
/***********************************************************************
* TEST_VOID: calls a system call
* Globals for returning the return code and errno from the system call
* test macros.
***********************************************************************/
-int TEST_RETURN;
+long TEST_RETURN;
int TEST_ERRNO;
/***********************************************************************