aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2023-01-10 10:05:13 +0200
committerLasse Collin <lasse.collin@tukaani.org>2023-01-10 10:26:59 +0200
commite81b9fc48ca70f9228308d3f1871cd81f9a5a496 (patch)
tree1fade37637b7e9e85850599697973ce174a0a814 /src
parentsysdefs.h: Don't include memory.h anymore even if it were available. (diff)
downloadxz-e81b9fc48ca70f9228308d3f1871cd81f9a5a496.tar.xz
sysdefs.h: Fix a comment.
Diffstat (limited to 'src')
-rw-r--r--src/common/sysdefs.h2
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;