Displaying 1 result from an estimated 1 matches for "_mod_libc_wrapper_h_".
2005 May 23
3
module-init-tools ported to klibc
...NU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ */
+
+#ifndef _MOD__LIBC_WRAPPER_H_
+#define _MOD_LIBC_WRAPPER_H_
+
+#ifndef HAVE_GETOPT_LONG
+
+struct option {
+ const char *name;
+ int has_arg;
+ int *flag;
+ int val;
+};
+
+extern int getopt_long(int argc, char *const argv[],
+ const char *optstring,
+ const struct option *longopts, int *longindex);
+
+#endif
+
+#ifndef HAVE_FNMA...