Module Name: src Committed By: rin Date: Sat Aug 3 06:29:52 UTC 2019
Modified Files: src/sys/dev/rasops: rasops.h Log Message: Protect rasops_copy{rows,cols}() by _RASOPS_PRIVATE. To generate a diff of this commit: cvs rdiff -u -r1.42 -r1.43 src/sys/dev/rasops/rasops.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/rasops/rasops.h diff -u src/sys/dev/rasops/rasops.h:1.42 src/sys/dev/rasops/rasops.h:1.43 --- src/sys/dev/rasops/rasops.h:1.42 Wed Jul 31 04:45:44 2019 +++ src/sys/dev/rasops/rasops.h Sat Aug 3 06:29:52 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: rasops.h,v 1.42 2019/07/31 04:45:44 rin Exp $ */ +/* $NetBSD: rasops.h,v 1.43 2019/08/03 06:29:52 rin Exp $ */ /*- * Copyright (c) 1999 The NetBSD Foundation, Inc. @@ -172,13 +172,14 @@ struct rasops_info { int rasops_init(struct rasops_info *, int, int); int rasops_reconfig(struct rasops_info *, int, int); void rasops_unpack_attr(long, int *, int *, int *); -void rasops_eraserows(void *, int, int, long); -void rasops_erasecols(void *, int, int, int, long); int rasops_get_cmap(struct rasops_info *, uint8_t *, size_t); extern const uint8_t rasops_cmap[256 * 3]; #ifdef _RASOPS_PRIVATE +void rasops_eraserows(void *, int, int, long); +void rasops_erasecols(void *, int, int, int, long); + /* * Per-depth initialization functions. */