aboutsummaryrefslogtreecommitdiff
path: root/src/common
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:05:13 +0200
commit7049c4a76c805ad27d6cf4ee119a2ef2a7add59f (patch)
treea5914359e51879fb98702e7d53812ae8ded69ed6 /src/common
parentsysdefs.h: Don't include memory.h anymore even if it were available. (diff)
downloadxz-7049c4a76c805ad27d6cf4ee119a2ef2a7add59f.tar.xz
sysdefs.h: Fix a comment.
Diffstat (limited to 'src/common')
-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;