Skip to content

Commit de65a48

Browse files
author
msebolt
committed
adjustments
1 parent 16b341e commit de65a48

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/c-runtime-library/errno-constants.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ms.assetid: 47089258-d5a5-4cd8-b193-223894dea0cf
1818

1919
The **`errno`** values are constants assigned to [`errno`](../c-runtime-library/errno-doserrno-sys-errlist-and-sys-nerr.md) in the event of various error conditions.
2020

21-
ERRNO.H contains the definitions of the **`errno`** values. However, not all the definitions given in ERRNO.H are used in 32-bit Windows operating systems. Some of the values in ERRNO.H are present to maintain compatibility with the UNIX family of operating systems.
21+
`ERRNO.H` contains the definitions of the **`errno`** values. However, not all the definitions given in `ERRNO.H` are used in 32-bit Windows operating systems. Some of the values in `ERRNO.H` are present to maintain compatibility with the UNIX family of operating systems.
2222

2323
The **`errno`** values in a 32-bit Windows operating system are a subset of the values for **`errno`** in XENIX systems. Thus, the **`errno`** value is not necessarily the same as the actual error code returned by a system call from the Windows operating systems. To access the actual operating system error code, use the [`_doserrno`](../c-runtime-library/errno-doserrno-sys-errlist-and-sys-nerr.md) variable, which contains this value.
2424

@@ -34,7 +34,7 @@ The following **`errno`** values are supported:
3434
|**`EDEADLOCK`**|Resource deadlock would occur. The argument to a math function is not in the domain of the function.|
3535
|**`EDOM`**|Math argument.|
3636
|**`EEXIST`**|Files exist. An attempt has been made to create a file that already exists. For example, the **`_O_CREAT`** and **`_O_EXCL`** flags are specified in an **`_open`** call, but the named file already exists.|
37-
|**`EILSEQ`**|Illegal sequence of bytes (for example, in an MBCS string).|
37+
|**`EILSEQ`**|Illegal sequence of bytes (for example, in an `MBCS` string).|
3838
|**`EINVAL`**|Invalid argument. An invalid value was given for one of the arguments to a function. For example, the value given for the origin when positioning a file pointer (by means of a call to **`fseek`**) is before the beginning of the file.|
3939
|**`EMFILE`**|Too many open files. No more file descriptors are available, so no more files can be opened.|
4040
|**`ENOENT`**|No such file or directory. The specified file or directory does not exist or cannot be found. This message can occur whenever a specified file does not exist or a component of a path does not specify an existing directory.|

docs/c-runtime-library/reference/pow-powf-powl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ By default, this function's global state is scoped to the application. To change
6868
|Routine|Required header (C)|Required header (C++)|
6969
|-|-|-|
7070
|**`pow`**, **`powf`**, **`powl`**|`<math.h>`|`<math.h>` or `<cmath>`|
71-
|**pow** macro | `<tgmath.h>` ||
71+
|**`pow`** macro | `<tgmath.h>` ||
7272
7373
For additional compatibility information, see [Compatibility](../../c-runtime-library/compatibility.md).
7474

0 commit comments

Comments
 (0)