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_errinfo_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_errinfo_impl.h')
-rw-r--r-- | src/internal/slibtool_errinfo_impl.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/internal/slibtool_errinfo_impl.h b/src/internal/slibtool_errinfo_impl.h index 58d6aff..a1d3b61 100644 --- a/src/internal/slibtool_errinfo_impl.h +++ b/src/internal/slibtool_errinfo_impl.h @@ -4,6 +4,9 @@ /* Released under the Standard MIT License; see COPYING.SLIBTOOL. */ /*******************************************************************/ +#ifndef SLIBTOOL_ERRINFO_IMPL_H +#define SLIBTOOL_ERRINFO_IMPL_H + #include <errno.h> #include <slibtool/slibtool.h> @@ -78,3 +81,5 @@ int slbt_record_error( __LINE__, \ SLBT_ERROR_NESTED, \ 0) + +#endif |