Skip to content

Commit 09cc7d7

Browse files
committed
remove another
1 parent cffe208 commit 09cc7d7

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

docs/c-runtime-library/reference/ftime-ftime32-ftime64.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Get the current time. More secure versions of these functions are available; see
1717
## Syntax
1818

1919
```C
20-
void _ftime( struct _timeb *timeptr ); // See note in remarks section about linkage
20+
void _ftime( struct _timeb *timeptr );
2121
void _ftime32( struct __timeb32 *timeptr );
2222
void _ftime64( struct __timeb64 *timeptr );
2323
```
@@ -46,12 +46,6 @@ The **`_ftime`** function is equivalent to **`_ftime64`**, and `_timeb` contains
4646
4747
By default, this function's global state is scoped to the application. To change this behavior, see [Global state in the CRT](../global-state.md).
4848
49-
> [!Note]
50-
> Starting with Windows SDK version 10.0.xxxxx.xxxx and Visual Studio 2026 or later, the following functions are no longer declared as `static inline` (internal linkage). Instead, they are now declared as `inline` (external linkage).\
51-
> To return to the previous behavior, `#define _STATIC_INLINE_UCRT_FUNCTIONS=1` before including any CRT headers. By default, `_STATIC_INLINE_UCRT_FUNCTIONS` is set to 0.\
52-
> This change increases UCRT conformance with the C++ standard, while also improving compatibility with C++ modules.\
53-
> This applies to the following function: _ftime
54-
5549
## Requirements
5650
5751
| Function | Required header |

0 commit comments

Comments
 (0)