diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2023-01-10 10:05:13 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2023-01-10 10:26:59 +0200 |
commit | e81b9fc48ca70f9228308d3f1871cd81f9a5a496 (patch) | |
tree | 1fade37637b7e9e85850599697973ce174a0a814 | |
parent | sysdefs.h: Don't include memory.h anymore even if it were available. (diff) | |
download | xz-e81b9fc48ca70f9228308d3f1871cd81f9a5a496.tar.xz |
sysdefs.h: Fix a comment.
-rw-r--r-- | src/common/sysdefs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/sysdefs.h b/src/common/sysdefs.h index 47bcbd97..2fbcd593 100644 --- a/src/common/sysdefs.h +++ b/src/common/sysdefs.h @@ -127,7 +127,7 @@ #include <stdlib.h> #include <assert.h> -// Pre-C99 systems lack stdbool.h. All the code in LZMA Utils must be written +// Pre-C99 systems lack stdbool.h. All the code in XZ Utils must be written // so that it works with fake bool type, for example: // // bool foo = (flags & 0x100) != 0; |