From 733016fbe5cc3529a0d1314b5eb0060dd357ff09 Mon Sep 17 00:00:00 2001 From: jmcneill Date: Sat, 29 Dec 2012 16:18:08 +0000 Subject: [PATCH] add missing prototype for crc32v --- usr.bin/mkubootimage/crc32.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/usr.bin/mkubootimage/crc32.c b/usr.bin/mkubootimage/crc32.c index cf9e3bf87023..7c96332d3450 100644 --- a/usr.bin/mkubootimage/crc32.c +++ b/usr.bin/mkubootimage/crc32.c @@ -1,4 +1,4 @@ -/* $NetBSD: crc32.c,v 1.3 2012/12/29 15:11:56 jmcneill Exp $ */ +/* $NetBSD: crc32.c,v 1.4 2012/12/29 16:18:08 jmcneill Exp $ */ /*- * Copyright (c) 2002 Marcel Moolenaar @@ -33,13 +33,14 @@ #endif #include -__RCSID("$NetBSD: crc32.c,v 1.3 2012/12/29 15:11:56 jmcneill Exp $"); +__RCSID("$NetBSD: crc32.c,v 1.4 2012/12/29 16:18:08 jmcneill Exp $"); #include #include #include uint32_t crc32(const void *, size_t); +uint32_t crc32v(const struct iovec *, int); static uint32_t crc32_tab[] = { 0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419, 0x706af48f,