pg_getopt.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * Postgres files that use getopt(3) always include this file.
  3. * We must cope with three different scenarios:
  4. * 1. We're using the platform's getopt(), and we should just import the
  5. * appropriate declarations.
  6. * 2. The platform lacks getopt(), and we must declare everything.
  7. * 3. The platform has getopt(), but we're not using it because we don't
  8. * like its behavior. The declarations we make here must be compatible
  9. * with both the platform's getopt() and our src/port/getopt.c.
  10. *
  11. * Portions Copyright (c) 1987, 1993, 1994
  12. * The Regents of the University of California. All rights reserved.
  13. *
  14. * Portions Copyright (c) 2003-2022, PostgreSQL Global Development Group
  15. *
  16. * src/include/pg_getopt.h
  17. */
  18. #ifndef PG_GETOPT_H
  19. #define PG_GETOPT_H
  20. /* POSIX says getopt() is provided by unistd.h */
  21. #include <unistd.h>
  22. /* rely on the system's getopt.h if present */
  23. #ifdef HAVE_GETOPT_H
  24. #include <getopt.h>
  25. #endif
  26. /*
  27. * If we have <getopt.h>, assume it declares these variables, else do that
  28. * ourselves. (We used to just declare them unconditionally, but Cygwin
  29. * doesn't like that.)
  30. */
  31. #ifndef HAVE_GETOPT_H
  32. extern PGDLLIMPORT char *optarg;
  33. extern PGDLLIMPORT int optind;
  34. extern PGDLLIMPORT int opterr;
  35. extern PGDLLIMPORT int optopt;
  36. #endif /* HAVE_GETOPT_H */
  37. /*
  38. * Some platforms have optreset but fail to declare it in <getopt.h>, so cope.
  39. * Cygwin, however, doesn't like this either.
  40. */
  41. #if defined(HAVE_INT_OPTRESET) && !defined(__CYGWIN__)
  42. extern PGDLLIMPORT int optreset;
  43. #endif
  44. /* Provide getopt() declaration if the platform doesn't have it */
  45. #ifndef HAVE_GETOPT
  46. extern int getopt(int nargc, char *const *nargv, const char *ostr);
  47. #endif
  48. #endif /* PG_GETOPT_H */