mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 15:33:07 +00:00
18 lines
267 B
C
18 lines
267 B
C
/* $Id$
|
|
*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS kernel
|
|
* FILE: lib/ntdll/csr/teb.c
|
|
* PURPOSE:
|
|
*/
|
|
|
|
#define NDEBUG
|
|
#include <ntdll.h>
|
|
|
|
|
|
PTEB STDCALL
|
|
_NtCurrentTeb() { return NtCurrentTeb(); }
|
|
|
|
|
|
|
|
/* EOF */
|