-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
instead, mpr_* functions print messages to stdout or stderr directly.
- Loading branch information
Showing
12 changed files
with
158 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* SPDX-License-Identifier: GPL-3.0-only */ | ||
#ifndef _CONFIG_H_ | ||
#define _CONFIG_H_ | ||
|
||
#define MSCP_VERSION "@MSCP_VERSION@" | ||
#define MSCP_BUILD_VERSION "@MSCP_BUILD_VERSION@" | ||
|
||
|
||
/* Define to 1 if you have the strlcat function. */ | ||
#cmakedefine HAVE_STRLCAT 1 | ||
|
||
#endif /* _CONFIG_H_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#ifndef _OPENBSD_COMPAT_H | ||
#define _OPENBSD_COMPAT_H | ||
|
||
#include "config.h" | ||
|
||
#ifndef HAVE_STRLCAT | ||
size_t strlcat(char *dst, const char *src, size_t siz); | ||
#endif | ||
|
||
#endif /* _OPENBSD_COMPAT_H_ */ |
Oops, something went wrong.