~ubuntu-branches/ubuntu/saucy/dahdi-tools/saucy-proposed

« back to all changes in this revision

Viewing changes to menuselect/menuselect_stub.c

  • Committer: Package Import Robot
  • Author(s): Jackson Doak
  • Date: 2013-08-25 12:48:37 UTC
  • mfrom: (2.1.7 sid)
  • Revision ID: package-import@ubuntu.com-20130825124837-wtefi7f9dsihg8is
Tags: 1:2.7.0-1ubuntu1
* Merge from debian. Remaining changes:
  - debian/control: Added gawk as dependency for dkms build
  - debian/control: Package dahdi Depends on dahdi-dkms | dahdi-source
  - debian/control: Set ubuntu maintainer    
  - added debian/dahdi.postinst
  - debian/control: Removed Uploaders field.
  - added debian/dahdi.postinst
  - added --error-handler=init_failed to debian/rules
  

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
/*
20
 
 * \file
21
 
 *
22
 
 * \author Russell Bryant <russell@digium.com>
23
 
 * 
24
 
 * \brief Menu stub
25
 
 */
26
 
 
27
 
#include <stdlib.h>
28
 
#include <stdio.h>
29
 
 
30
 
#include "menuselect.h"
31
 
 
32
 
int run_menu(void)
33
 
{
34
 
        fprintf(stderr, "**************************************************\n");
35
 
        fprintf(stderr, "*** Install ncurses to use the menu interface! ***\n");
36
 
        fprintf(stderr, "**************************************************\n");
37
 
 
38
 
        return -1;
39
 
}