mirror of
https://github.com/reactos/reactos.git
synced 2025-07-24 20:03:53 +00:00

- TSVN choked repeatedly when attempting to merge ~9000 revs into the branch (tried 3 times on 2 different computers) - If someone wants to delete aicom-network-fixes, they are welcome to - Lesson learned: Letting a branch get thousands of revs out of date is a horrible idea svn path=/branches/aicom-network-branch/; revision=44353
20 lines
385 B
C
20 lines
385 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* FILE: lib/crt/??????
|
|
* PURPOSE: Unknown
|
|
* PROGRAMER: Unknown
|
|
* UPDATE HISTORY:
|
|
* 25/11/05: Added license header
|
|
*/
|
|
|
|
#include <precomp.h>
|
|
#include <internal/tls.h>
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
int * __fpecode(void)
|
|
{
|
|
return(&(GetThreadData()->fpecode));
|
|
}
|