Skip to content

Commit

Permalink
feat: Added manual pages for queue(3) and tree(3).
Browse files Browse the repository at this point in the history
error(3) is present at Linux's man-pages package.
  • Loading branch information
takusuman committed Jun 1, 2023
1 parent 581a4d1 commit 15a3f60
Show file tree
Hide file tree
Showing 3 changed files with 1,657 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ install-sysheaders: src/cdefs.h src/queue.h src/tree.h
for sys_header in src/cdefs.h src/queue.h src/tree.h; do \
$(INSTALL) -c -m 644 $$sys_header $(ROOT)$(SYSINCLUDE_DIR) ; \
done
for manual in ./man/queue.3 ./man/tree.3; do \
$(INSTALL) -c -m 644 $$manual $(ROOT)$(MANDIR)/man3/ ; \
done

install-headers: src/error.h
for header in src/error.h; do \
Expand Down
Loading

0 comments on commit 15a3f60

Please sign in to comment.