menuselect_stub.c 987 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 2005 - 2006, Russell Bryant
  5. *
  6. * Russell Bryant <russell@digium.com>
  7. *
  8. * See http://www.asterisk.org for more information about
  9. * the Asterisk project. Please do not directly contact
  10. * any of the maintainers of this project for assistance;
  11. * the project provides a web site, mailing lists and IRC
  12. * channels for your use.
  13. *
  14. * This program is free software, distributed under the terms of
  15. * the GNU General Public License Version 2. See the LICENSE file
  16. * at the top of the source tree.
  17. */
  18. /*
  19. * \file
  20. *
  21. * \author Russell Bryant <russell@digium.com>
  22. *
  23. * \brief Menu stub
  24. */
  25. #include <stdlib.h>
  26. #include <stdio.h>
  27. #include "menuselect.h"
  28. int run_menu(void)
  29. {
  30. fprintf(stderr, "**************************************************\n");
  31. fprintf(stderr, "*** Install ncurses to use the menu interface! ***\n");
  32. fprintf(stderr, "**************************************************\n");
  33. return -1;
  34. }