diff --git a/reactos/lib/ntdll/rtl/ppb.c b/reactos/lib/ntdll/rtl/ppb.c index d05a9633840..6db2749dbba 100644 --- a/reactos/lib/ntdll/rtl/ppb.c +++ b/reactos/lib/ntdll/rtl/ppb.c @@ -30,27 +30,6 @@ /* FUNCTIONS ****************************************************************/ -/* - * @implemented - */ -VOID STDCALL -RtlAcquirePebLock(VOID) -{ - PPEB Peb = NtCurrentPeb (); - Peb->FastPebLockRoutine (Peb->FastPebLock); -} - - -/* - * @implemented - */ -VOID STDCALL -RtlReleasePebLock(VOID) -{ - PPEB Peb = NtCurrentPeb (); - Peb->FastPebUnlockRoutine (Peb->FastPebLock); -} - static inline VOID RtlpCopyParameterString(PWCHAR *Ptr, PUNICODE_STRING Destination, diff --git a/reactos/lib/rtl/env.c b/reactos/lib/rtl/env.c index fc9e3040223..9c2fd8b8ae0 100644 --- a/reactos/lib/rtl/env.c +++ b/reactos/lib/rtl/env.c @@ -22,6 +22,28 @@ /* FUNCTIONS *****************************************************************/ +/* FIXME: Added here temporarly until I fix this properly tomorrow */ +/* + * @implemented + */ +VOID STDCALL +RtlAcquirePebLock(VOID) +{ + PPEB Peb = NtCurrentPeb (); + Peb->FastPebLockRoutine (Peb->FastPebLock); +} + +/* FIXME: Added here temporarly until I fix this properly tomorrow */ +/* + * @implemented + */ +VOID STDCALL +RtlReleasePebLock(VOID) +{ + PPEB Peb = NtCurrentPeb (); + Peb->FastPebUnlockRoutine (Peb->FastPebLock); +} + /* * @implemented */