summaryrefslogtreecommitdiff
path: root/src/os
diff options
context:
space:
mode:
authorTyler McGavran <tyler.taggerung@gmail.com>2022-12-09 21:03:30 -0500
committerGitHub <noreply@github.com>2022-12-09 19:03:30 -0700
commite1976267f327c81cba064ad918329dd6e48a11c5 (patch)
tree7644675d0a1a989d26b87e8ab83136f0ee3151a8 /src/os
parent3172daa2ea208e74c23f8e2d29403fc774d9823e (diff)
Add a utility that aids in generating m2c output (#279)
* Add a utility to help generate m2c output * Make a small change to an OS file which fixes a small issue when using m2ctx Signed-off-by: Taggerung <tyler.taggerung@gmail.com>
Diffstat (limited to 'src/os')
-rw-r--r--src/os/bstring.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/os/bstring.h b/src/os/bstring.h
index 01486d99e..1823b7039 100644
--- a/src/os/bstring.h
+++ b/src/os/bstring.h
@@ -23,7 +23,8 @@ extern "C" {
* rights reserved under the Copyright Laws of the United States.
*/
-#ident "$Revision: 1.4 $"
+// Causes issues when using m2ctx, not really necessary for our purposes
+//#ident "$Revision: 1.4 $"
extern void bcopy(const void *, void *, size_t);
extern int bcmp(const void *, const void *, int);