Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/sys Don't do _BSD_SIZE_T_ dance here. Use <stddef.h> in...



details:   https://anonhg.NetBSD.org/src/rev/c099ccd5cc6b
branches:  trunk
changeset: 343478:c099ccd5cc6b
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Sat Feb 06 15:36:36 2016 +0000

description:
Don't do _BSD_SIZE_T_ dance here.  Use <stddef.h> in userland.

This file is used in tools, where _BSD_SIZE_T_ is unreliable.  In the
kernel, <sys/types.h> will define size_t anyway.  Outside the kernel,
<stddef.h> is the standard way to get size_t.

diffstat:

 sys/sys/exec_elf.h |  8 ++------
 1 files changed, 2 insertions(+), 6 deletions(-)

diffs (24 lines):

diff -r 02933629b08e -r c099ccd5cc6b sys/sys/exec_elf.h
--- a/sys/sys/exec_elf.h        Sat Feb 06 14:11:58 2016 +0000
+++ b/sys/sys/exec_elf.h        Sat Feb 06 15:36:36 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: exec_elf.h,v 1.151 2015/11/01 17:44:42 christos Exp $  */
+/*     $NetBSD: exec_elf.h,v 1.152 2016/02/06 15:36:36 riastradh Exp $ */
 
 /*-
  * Copyright (c) 1994 The NetBSD Foundation, Inc.
@@ -44,13 +44,9 @@
 #include <sys/types.h>
 #else
 #include <inttypes.h>
+#include <stddef.h>
 #endif /* _KERNEL || _STANDALONE */
 
-#ifdef   _BSD_SIZE_T_
-typedef  _BSD_SIZE_T_    size_t;
-#undef   _BSD_SIZE_T_
-#endif
-
 #if HAVE_NBTOOL_CONFIG_H
 #include <nbinclude/machine/elf_machdep.h>
 #else



Home | Main Index | Thread Index | Old Index