diff options
author | midipix <writeonce@midipix.org> | 2018-06-27 11:16:54 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-06-27 11:16:54 -0400 |
commit | 089c8bfc743edc44058a665bbe695809c26c682c (patch) | |
tree | e02d95d751c0d551f77a5524805c4dd24d07913a /src/internal/slibtool_symlink_impl.h | |
parent | 582d19336618485031850e9f0345b4b54ecdc844 (diff) | |
download | slibtool-089c8bfc743edc44058a665bbe695809c26c682c.tar.bz2 slibtool-089c8bfc743edc44058a665bbe695809c26c682c.tar.xz |
internal headers: add missing guards and notes, remove unneeded notes.
Diffstat (limited to 'src/internal/slibtool_symlink_impl.h')
-rw-r--r-- | src/internal/slibtool_symlink_impl.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/internal/slibtool_symlink_impl.h b/src/internal/slibtool_symlink_impl.h index 8b418a1..9393a17 100644 --- a/src/internal/slibtool_symlink_impl.h +++ b/src/internal/slibtool_symlink_impl.h @@ -1,8 +1,5 @@ -/*******************************************************************/ -/* slibtool: a skinny libtool implementation, written in C */ -/* Copyright (C) 2016--2018 Z. Gilboa */ -/* Released under the Standard MIT License; see COPYING.SLIBTOOL. */ -/*******************************************************************/ +#ifndef SLIBTOOL_SYMLINK_IMPL_H +#define SLIBTOOL_SYMLINK_IMPL_H #include <stdbool.h> #include <slibtool/slibtool.h> @@ -15,3 +12,5 @@ int slbt_create_symlink( bool flawrapper); int slbt_symlink_is_a_placeholder(char * lnkpath); + +#endif |