From b3b790815959273fcb658ec27742b1113acb8939 Mon Sep 17 00:00:00 2001 From: Greg Haerr Date: Thu, 2 Jan 2025 20:36:58 -0700 Subject: [PATCH] cleanup --- libc/watcom/asm/fmemcmp.asm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libc/watcom/asm/fmemcmp.asm b/libc/watcom/asm/fmemcmp.asm index dd39ab911..6e7456cbc 100644 --- a/libc/watcom/asm/fmemcmp.asm +++ b/libc/watcom/asm/fmemcmp.asm @@ -1,5 +1,6 @@ -; int fmemcmp(void __far *s1, void __far *s2, size_t n) -; returns 0 on match, otherwise -1/1. +; int fmemcmp(void __far *s1, void __far *s2, size_t n) +; returns 0 on match, otherwise -1/1 on the difference +; of the first differing bytes as unsigned char values ; ; 2 Jan 2025 Greg Haerr