Module Name: src
Committed By: nakayama
Date: Wed Aug 31 13:09:10 UTC 2011
Modified Files:
src/usr.sbin/mopd/common: file.c
Log Message:
Fix build on mips (NOAOUT case).
To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/usr.sbin/mopd/common/file.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/mopd/common/file.c
diff -u src/usr.sbin/mopd/common/file.c:1.14 src/usr.sbin/mopd/common/file.c:1.15
--- src/usr.sbin/mopd/common/file.c:1.14 Tue Aug 30 19:49:10 2011
+++ src/usr.sbin/mopd/common/file.c Wed Aug 31 13:09:10 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: file.c,v 1.14 2011/08/30 19:49:10 joerg Exp $ */
+/* $NetBSD: file.c,v 1.15 2011/08/31 13:09:10 nakayama Exp $ */
/*
* Copyright (c) 1995-96 Mats O Jansson. All rights reserved.
@@ -26,7 +26,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: file.c,v 1.14 2011/08/30 19:49:10 joerg Exp $");
+__RCSID("$NetBSD: file.c,v 1.15 2011/08/31 13:09:10 nakayama Exp $");
#endif
#include "os.h"
@@ -58,8 +58,10 @@
# endif
#endif /* NOELF */
+#ifndef NOAOUT
static int getCLBYTES(int);
static int getMID(int, int);
+#endif
const char *
FileTypeName(mopd_imagetype type)