~jaypipes/drizzle/item-class-file-reorg

« back to all changes in this revision

Viewing changes to client/drizzle.c

  • Committer: Brian Aker
  • Date: 2008-07-26 18:39:33 UTC
  • mfrom: (212.1.3 codestyle)
  • Revision ID: brian@tangent.org-20080726183933-hueup0fcy2zs1hug
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
1256
1256
 
1257
1257
 
1258
1258
#if defined(HAVE_TERMIOS_H) && defined(GWINSZ_IN_SYS_IOCTL)
1259
 
sig_handler window_resize(int sig __attribute__((__unused__)))
 
1259
sig_handler window_resize(int sig __attribute__((unused)))
1260
1260
{
1261
1261
  struct winsize window_size;
1262
1262
 
3445
3445
}
3446
3446
 
3447
3447
static int
3448
 
com_tee(DYNAMIC_STRING *buffer __attribute__((__unused__)), char *line )
 
3448
com_tee(DYNAMIC_STRING *buffer __attribute__((unused)), char *line )
3449
3449
{
3450
3450
  char file_name[FN_REFLEN], *end, *param;
3451
3451
 
3503
3503
*/
3504
3504
 
3505
3505
static int
3506
 
com_pager(DYNAMIC_STRING *buffer __attribute__((__unused__)),
 
3506
com_pager(DYNAMIC_STRING *buffer __attribute__((unused)),
3507
3507
          char *line __attribute__((unused)))
3508
3508
{
3509
3509
  char pager_name[FN_REFLEN], *end, *param;
3648
3648
}
3649
3649
 
3650
3650
 
3651
 
static int com_source(DYNAMIC_STRING *buffer __attribute__((__unused__)), char *line)
 
3651
static int com_source(DYNAMIC_STRING *buffer __attribute__((unused)), char *line)
3652
3652
{
3653
3653
  char source_name[FN_REFLEN], *end, *param;
3654
3654
  LINE_BUFFER *line_buff;
4490
4490
  }
4491
4491
}
4492
4492
 
4493
 
static int com_prompt(DYNAMIC_STRING *buffer __attribute__((__unused__)),
 
4493
static int com_prompt(DYNAMIC_STRING *buffer __attribute__((unused)),
4494
4494
                      char *line)
4495
4495
{
4496
4496
  char *ptr=strchr(line, ' ');