Source-Changes-HG archive

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

[src/trunk]: src/sys/sys avoid "u_long"



details:   https://anonhg.NetBSD.org/src/rev/a0118d1f2cba
branches:  trunk
changeset: 815784:a0118d1f2cba
user:      dholland <dholland%NetBSD.org@localhost>
date:      Fri Jun 03 15:14:57 2016 +0000

description:
avoid "u_long"

diffstat:

 sys/sys/exec_aout.h |  18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)

diffs (32 lines):

diff -r 66ca1cbbf97e -r a0118d1f2cba sys/sys/exec_aout.h
--- a/sys/sys/exec_aout.h       Fri Jun 03 10:34:03 2016 +0000
+++ b/sys/sys/exec_aout.h       Fri Jun 03 15:14:57 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: exec_aout.h,v 1.40 2012/03/17 21:54:12 martin Exp $    */
+/*     $NetBSD: exec_aout.h,v 1.41 2016/06/03 15:14:57 dholland Exp $  */
 
 /*
  * Copyright (c) 1993, 1994 Christopher G. Demetriou
@@ -43,14 +43,14 @@
  * N_SETMAGIC/N_GET{MAGIC,MID,FLAG} macros below.
  */
 struct exec {
-       u_long  a_midmag;       /* htonl(flags<<26 | mid<<16 | magic) */
-       u_long  a_text;         /* text segment size */
-       u_long  a_data;         /* initialized data size */
-       u_long  a_bss;          /* uninitialized data size */
-       u_long  a_syms;         /* symbol table size */
-       u_long  a_entry;        /* entry point */
-       u_long  a_trsize;       /* text relocation size */
-       u_long  a_drsize;       /* data relocation size */
+       unsigned long a_midmag; /* htonl(flags<<26 | mid<<16 | magic) */
+       unsigned long a_text;   /* text segment size */
+       unsigned long a_data;   /* initialized data size */
+       unsigned long a_bss;    /* uninitialized data size */
+       unsigned long a_syms;   /* symbol table size */
+       unsigned long a_entry;  /* entry point */
+       unsigned long a_trsize; /* text relocation size */
+       unsigned long a_drsize; /* data relocation size */
 };
 
 /* a_magic */



Home | Main Index | Thread Index | Old Index