33 lines
1.1 KiB
C
33 lines
1.1 KiB
C
/****************************************************************************
|
|
|
|
|
| (C) Copyright 1985, 1991, 1993, 1996 Novell, Inc.
|
|
| All Rights Reserved.
|
|
|
|
|
|***************************************************************************
|
|
|
|
|
| NetWare Advance File Services (NSS) module
|
|
|
|
|
|---------------------------------------------------------------------------
|
|
|
|
|
| Source(s): public_core/library/stdlib/exit.c
|
|
|
|
|
|---------------------------------------------------------------------------
|
|
| mars-nwe userspace port note:
|
|
| Original Linux NSS already leaves LB_exitMyselfAndReturn as a no-op command
|
|
| line/runtime boundary. Standalone libnwnss cannot kill an NLM/kernel module;
|
|
| keep both public exit entry points as no-op status boundaries.
|
|
+-------------------------------------------------------------------------*/
|
|
#include <library/xStdlib.h>
|
|
|
|
void LB_exitMyselfAndWait(struct LoadDefinitionStructure *moduleHandle, int status)
|
|
{
|
|
(void)moduleHandle;
|
|
(void)status;
|
|
}
|
|
|
|
void LB_exitMyselfAndReturn(struct LoadDefinitionStructure *moduleHandle, int status)
|
|
{
|
|
(void)moduleHandle;
|
|
(void)status;
|
|
}
|