summaryrefslogtreecommitdiffstatshomepage
path: root/private.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-02-23 12:45:19 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-02-23 12:45:19 +0000
commit87afbc0e736c0c51230aed2a74f1f10684872d7e (patch)
tree6a17424d1de64387a59166cd7ba593b96bb279b0 /private.h
parent7f0efa8fae853b8421869bf16da3d57b9b4d0da0 (diff)
downloadmandoc-87afbc0e736c0c51230aed2a74f1f10684872d7e.tar.gz
mandoc-87afbc0e736c0c51230aed2a74f1f10684872d7e.tar.zst
mandoc-87afbc0e736c0c51230aed2a74f1f10684872d7e.zip
More in-file documentation and Linux-isation.
Moved mdoc_macros table definition into macro.c, where it belongs.
Diffstat (limited to 'private.h')
-rw-r--r--private.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/private.h b/private.h
index 1f212548..8e8c41e3 100644
--- a/private.h
+++ b/private.h
@@ -1,4 +1,4 @@
-/* $Id: private.h,v 1.78 2009/02/22 14:31:08 kristaps Exp $ */
+/* $Id: private.h,v 1.79 2009/02/23 12:45:19 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -164,15 +164,6 @@ int xstrncmp(const char *, const char *, size_t);
void *xcalloc(size_t, size_t);
char *xstrdup(const char *);
-int macro_obsolete(MACRO_PROT_ARGS);
-int macro_constant(MACRO_PROT_ARGS);
-int macro_constant_scoped(MACRO_PROT_ARGS);
-int macro_constant_delimited(MACRO_PROT_ARGS);
-int macro_text(MACRO_PROT_ARGS);
-int macro_scoped(MACRO_PROT_ARGS);
-int macro_scoped_close(MACRO_PROT_ARGS);
-int macro_scoped_line(MACRO_PROT_ARGS);
-int macro_prologue(MACRO_PROT_ARGS);
int macro_end(struct mdoc *);
__END_DECLS