Module Name:    src
Committed By:   maya
Date:           Wed Feb  8 17:30:27 UTC 2017

Modified Files:
        src/lib/libc/include: namespace.h
        src/lib/libc/sys: Makefile.inc

Log Message:
Make paccept a weak symbol in preparation for using it in another function


To generate a diff of this commit:
cvs rdiff -u -r1.185 -r1.186 src/lib/libc/include/namespace.h
cvs rdiff -u -r1.232 -r1.233 src/lib/libc/sys/Makefile.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libc/include/namespace.h
diff -u src/lib/libc/include/namespace.h:1.185 src/lib/libc/include/namespace.h:1.186
--- src/lib/libc/include/namespace.h:1.185	Fri Jan 13 14:41:27 2017
+++ src/lib/libc/include/namespace.h	Wed Feb  8 17:30:27 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: namespace.h,v 1.185 2017/01/13 14:41:27 christos Exp $	*/
+/*	$NetBSD: namespace.h,v 1.186 2017/02/08 17:30:27 maya Exp $	*/
 
 /*-
  * Copyright (c) 1997-2004 The NetBSD Foundation, Inc.
@@ -524,6 +524,7 @@
 #define pmap_rmtcall		_pmap_rmtcall
 #define pmap_set		_pmap_set
 #define pmap_unset		_pmap_unset
+#define paccept			_paccept
 #define pollts			_pollts
 #define popen			_popen
 #define posix2time		_posix2time

Index: src/lib/libc/sys/Makefile.inc
diff -u src/lib/libc/sys/Makefile.inc:1.232 src/lib/libc/sys/Makefile.inc:1.233
--- src/lib/libc/sys/Makefile.inc:1.232	Tue Feb  7 19:29:40 2017
+++ src/lib/libc/sys/Makefile.inc	Wed Feb  8 17:30:27 2017
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.inc,v 1.232 2017/02/07 19:29:40 kamil Exp $
+#	$NetBSD: Makefile.inc,v 1.233 2017/02/08 17:30:27 maya Exp $
 #	@(#)Makefile.inc	8.3 (Berkeley) 10/24/94
 
 # sys sources
@@ -130,7 +130,7 @@ ASM=	access.S acct.S \
 		munmap.S \
 	nfssvc.S __ntp_gettime50.S \
 	openat.S \
-	paccept.S pathconf.S pipe2.S pmc_get_info.S pmc_control.S \
+	pathconf.S pipe2.S pmc_get_info.S pmc_control.S \
 		__posix_chown.S __posix_fchown.S __posix_lchown.S \
 		__posix_rename.S profil.S \
 	__quotactl.S \
@@ -170,7 +170,7 @@ WEAKASM= accept.S __aio_suspend50.S clos
 	fcntl.S fdatasync.S fsync.S \
 	fsync_range.S __kevent50.S \
 	kill.S mq_receive.S mq_send.S __mq_timedreceive50.S __mq_timedsend50.S \
-	msgrcv.S msgsnd.S __msync13.S  __nanosleep50.S open.S poll.S \
+	msgrcv.S msgsnd.S __msync13.S  __nanosleep50.S open.S paccept.S poll.S \
 	__pollts50.S __pselect50.S read.S readlink.S \
 	readv.S _sched_setparam.S _sched_getparam.S _sched_setaffinity.S \
 	_sched_getaffinity.S sched_yield.S _sched_protect.S \

Reply via email to