Module Name:    src
Committed By:   christos
Date:           Fri Jan 19 18:40:35 UTC 2024

Modified Files:
        src/include: md2.h unistd.h

Log Message:
Add missing decls


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/include/md2.h
cvs rdiff -u -r1.163 -r1.164 src/include/unistd.h

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

Modified files:

Index: src/include/md2.h
diff -u src/include/md2.h:1.8 src/include/md2.h:1.9
--- src/include/md2.h:1.8	Tue Aug  1 03:04:15 2023
+++ src/include/md2.h	Fri Jan 19 13:40:35 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: md2.h,v 1.8 2023/08/01 07:04:15 mrg Exp $	*/
+/*	$NetBSD: md2.h,v 1.9 2024/01/19 18:40:35 christos Exp $	*/
 
 #ifndef _MD2_H_
 #define _MD2_H_
@@ -25,6 +25,9 @@ char	*MD2End(MD2_CTX *, char[MD2_DIGEST_
 char	*MD2File(const char *, char *);
 char	*MD2FileChunk(const char *, char *, off_t, off_t);
 char	*MD2Data(const unsigned char *, size_t, char[MD2_DIGEST_STRING_LENGTH]);
+#ifdef _LIBC_INTERNAL
+void	MD2Transform(MD2_CTX *);
+#endif
 __END_DECLS
 
 #endif /* _MD2_H_ */

Index: src/include/unistd.h
diff -u src/include/unistd.h:1.163 src/include/unistd.h:1.164
--- src/include/unistd.h:1.163	Tue May 31 09:42:59 2022
+++ src/include/unistd.h	Fri Jan 19 13:40:35 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: unistd.h,v 1.163 2022/05/31 13:42:59 riastradh Exp $	*/
+/*	$NetBSD: unistd.h,v 1.164 2024/01/19 18:40:35 christos Exp $	*/
 
 /*-
  * Copyright (c) 1998, 1999, 2008 The NetBSD Foundation, Inc.
@@ -414,5 +414,10 @@ extern	 int optreset;		/* getopt(3) exte
 extern	 char *suboptarg;	/* getsubopt(3) external variable */
 #endif
 
+#ifdef _LIBC_INTERNAL
+pid_t	__fork(void);
+pid_t	__locked_fork(int *) __weak;
+#endif
+
 __END_DECLS
 #endif /* !_UNISTD_H_ */

Reply via email to