diff options
| author | joerg <joerg@NetBSD.org> | 2017-10-03 10:28:30 +0000 |
|---|---|---|
| committer | joerg <joerg@NetBSD.org> | 2017-10-03 10:28:30 +0000 |
| commit | ae85de3c70a236c40eb0dc7bbb428e7482c021fc (patch) | |
| tree | 14ef3cf98ff500dd91e2b4ad8a04e504e2dcc214 /tools | |
| parent | 53c08a8e503ea935e75086d79fe4833c1b3f8652 (diff) | |
Be consistent with our header.
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/compat/fpurge.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/compat/fpurge.c b/tools/compat/fpurge.c index c99cfc19bce..4916cdbd354 100644 --- a/tools/compat/fpurge.c +++ b/tools/compat/fpurge.c @@ -1,4 +1,4 @@ -/* $NetBSD: fpurge.c,v 1.2 2017/10/02 22:19:45 christos Exp $ */ +/* $NetBSD: fpurge.c,v 1.3 2017/10/03 10:28:30 joerg Exp $ */ /*- * Copyright (c) 2009 The NetBSD Foundation, Inc. @@ -42,11 +42,12 @@ #include <stdio.h> #include <fcntl.h> -void +int fpurge(FILE *fp) { #if HAVE___FPURGE __fpurge(fp); #endif + return 0; } #endif |
