mirror of
https://github.com/termux/termux-packages.git
synced 2024-11-23 14:56:16 +00:00
111324f17e
Co-authored-by: Simon Hafner <hafnersimon@gmail.com>
17 lines
242 B
C
17 lines
242 B
C
#ifndef _GETSUBOPT_H
|
|
#define _GETSUBOPT_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#if defined __ANDROID__ && __ANDROID_API__ < 26
|
|
int getsubopt(char **, char *const *, char **);
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _GETSUBOPT_H */
|