diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2012-12-06 14:33:38 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2012-12-06 14:33:38 +0000 |
commit | 80a6adf3ba06aa791ceef8a157d0d3c783fe01f9 (patch) | |
tree | 98f95ba33a3e01cde5ced92d8762ab8808ad6799 /usr.bin | |
parent | 452756ac615d396ee5488ee5830922c6910ce9f2 (diff) |
missing extern
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/make/targ.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/make/targ.h b/usr.bin/make/targ.h index f24be2d3911..0048f65afa3 100644 --- a/usr.bin/make/targ.h +++ b/usr.bin/make/targ.h @@ -1,6 +1,6 @@ #ifndef TARG_H #define TARG_H -/* $OpenBSD: targ.h,v 1.11 2012/10/02 10:29:31 espie Exp $ */ +/* $OpenBSD: targ.h,v 1.12 2012/12/06 14:33:37 espie Exp $ */ /* * Copyright (c) 2001 Marc Espie. @@ -73,6 +73,6 @@ struct ohash_info; extern struct ohash_info gnode_info; extern void Targ_setdirs(const char *, const char *); -const char *status_to_string(GNode *); -struct ohash *targets_hash(void); +extern const char *status_to_string(GNode *); +extern struct ohash *targets_hash(void); #endif |