diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index 6c2615e03..b7a7239cc 100644 --- a/winsup/w32api/ChangeLog +++ b/winsup/w32api/ChangeLog @@ -1,3 +1,8 @@ +2001-11-09 Robert Collins + + * include/winnt.h (GetCurrentFiber): Create a prototype before the implementation; + (GetFiberData): Ditto. + 2001-11-09 Robert Collins * include/winnt.h: Backout last change. diff --git a/winsup/w32api/include/winnt.h b/winsup/w32api/include/winnt.h index 65f5d157d..345f4462a 100644 --- a/winsup/w32api/include/winnt.h +++ b/winsup/w32api/include/winnt.h @@ -2524,6 +2524,7 @@ typedef struct _REPARSE_POINT_INFORMATION { WORD ReparseDataLength; WORD UnparsedNameLength; } REPARSE_POINT_INFORMATION, *PREPARSE_POINT_INFORMATION; +PVOID GetCurrentFiber(void); extern __inline__ PVOID GetCurrentFiber(void) { void* ret; @@ -2534,7 +2535,7 @@ extern __inline__ PVOID GetCurrentFiber(void) ); return ret; } - +PVOID GetFiberData(void); extern __inline__ PVOID GetFiberData(void) { void* ret;