33 lines
918 B
Diff
33 lines
918 B
Diff
From 25fb8c292c498ad0eaeb62ccb443f0e034da7c10 Mon Sep 17 00:00:00 2001
|
||
From: swcompiler <lc@wxiat.com>
|
||
Date: Fri, 29 Nov 2024 17:27:15 +0800
|
||
Subject: [PATCH 23/23] Sw64: add getopt weak alias
|
||
|
||
---
|
||
posix/getopt1.c | 9 +++++++++
|
||
1 file changed, 9 insertions(+)
|
||
|
||
diff --git a/posix/getopt1.c b/posix/getopt1.c
|
||
index 49323aa8..ee2e7510 100644
|
||
--- a/posix/getopt1.c
|
||
+++ b/posix/getopt1.c
|
||
@@ -64,6 +64,15 @@ _getopt_long_only_r (int argc, char **argv, const char *options,
|
||
1, d, 0);
|
||
}
|
||
|
||
+#ifndef SW_64
|
||
+int getopt_long_only (int argc, char *__getopt_argv_const *argv,
|
||
+ const char *options,
|
||
+ const struct option *long_options,
|
||
+ int *opt_index) __attribute__ ((weak));
|
||
+int _getopt_long_only_r (int argc, char **argv, const char *options,
|
||
+ const struct option *long_options, int *opt_index,
|
||
+ struct _getopt_data *d) __attribute__ ((weak));
|
||
+#endif
|
||
|
||
#ifdef TEST
|
||
|
||
--
|
||
2.25.1
|
||
|