~ubuntu-branches/ubuntu/hardy/uim/hardy

« back to all changes in this revision

Viewing changes to emacs/output.h

  • Committer: Bazaar Package Importer
  • Author(s): Steinar H. Gunderson
  • Date: 2006-07-06 22:17:24 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060706221724-6sobw1fcsxj647hp
Tags: 1:1.1.0-1.2
* Non-maintainer upload.
* Added -Wno-cast-align to CFLAGS, as per the RM's recommendations:

  < vorlon> Sesse: -Wno-cast-align and to hell with it :P

  Really fixes FTBFS. (Really Closes: #375081)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
  Copyright (c) 2005 uim Project http://uim.freedesktop.org/
 
2
  Copyright (c) 2005-2006 uim Project http://uim.freedesktop.org/
3
3
 
4
4
  All rights reserved.
5
5
 
43
43
 
44
44
#include "debug.h"
45
45
 
46
 
extern int output_enable;
47
 
 
48
 
int a_putchar(int c);
49
 
int a_printf(const char *fmt, ...);
 
46
#define a_printf printf
 
47
#define a_putchar putchar
50
48
 
51
49
void output_with_escape(const char *str);
52
50