pmt: initial 2.6.0 update

This commit is contained in:
2024-07-28 23:01:21 +03:00
parent 36efab6eb3
commit 5b00b0bfe3
27 changed files with 706 additions and 677 deletions

View File

@@ -16,8 +16,8 @@
* limitations under the License.
*/
#ifndef __PMT_DOCS_H
#define __PMT_DOCS_H
#ifndef __PMT_HELP_MSGS_H
#define __PMT_HELP_MSGS_H
__BEGIN_DECLS

View File

@@ -16,6 +16,10 @@
* limitations under the License.
*/
#if !defined(__clang__) && !defined(__NDK_BUILD)
#error "Your compiler is NOT clang. Please build with LLVM clang."
#endif
#include <sys/cdefs.h>
__BEGIN_DECLS
@@ -28,11 +32,13 @@ __BEGIN_DECLS
#ifdef INC_MAIN_LIBS
#include <stdio.h>
#include <stdbool.h>
#include <unistd.h>
#include <fcntl.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#if !defined(HELP) || !defined(VERSIONING)
#include <stdlib.h>
#include <unistd.h>
#endif
#endif
#ifdef INC_GETOPT

View File

@@ -28,7 +28,7 @@ __BEGIN_DECLS
/* versioning */
#define PMT_MAJOR 2
#define PMT_MINOR 5
#define PMT_MINOR 6
#define PMT_PATCHLEVEL 0
__END_DECLS