summaryrefslogtreecommitdiff
path: root/lib/libc/ssp/h_memset.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/ssp/h_memset.c')
-rw-r--r--lib/libc/ssp/h_memset.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/ssp/h_memset.c b/lib/libc/ssp/h_memset.c
index 65ed5f2ee7d2..f1acbbd4e311 100644
--- a/lib/libc/ssp/h_memset.c
+++ b/lib/libc/ssp/h_memset.c
@@ -1,4 +1,4 @@
-/* $NetBSD: h_memset.c,v 1.1 2010/12/27 02:04:19 pgoyette Exp $ */
+/* $NetBSD: h_memset.c,v 1.2 2017/01/16 16:34:24 christos Exp $ */
/*
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
#include <sys/cdefs.h>
__COPYRIGHT("@(#) Copyright (c) 2008\
The NetBSD Foundation, inc. All rights reserved.");
-__RCSID("$NetBSD: h_memset.c,v 1.1 2010/12/27 02:04:19 pgoyette Exp $");
+__RCSID("$NetBSD: h_memset.c,v 1.2 2017/01/16 16:34:24 christos Exp $");
#include <stdio.h>
#include <string.h>
@@ -41,5 +41,5 @@ main(int argc, char *argv[])
char b[10];
size_t len = atoi(argv[1]);
(void)memset(b, 0, len);
- return 0;
+ return b[0]; /* keeps optimizer from zapping the call to memset() */
}