~ubuntu-branches/ubuntu/breezy/kdemultimedia/breezy

« back to all changes in this revision

Viewing changes to config.h.bot

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2005-03-24 04:48:58 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050324044858-8ff88o9jxej6ii3d
Tags: 4:3.4.0-0ubuntu3
Add kubuntu_02_hide_arts_menu_entries.diff to hide artsbuilder and artscontrol k-menu entries

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
/* this is for Tru64 Unix (alias OSF, alias Digital Unix) */
3
 
 
4
 
#ifdef __osf__
5
 
#include <assert.h>
6
 
#include <sys/types.h>
7
 
#include <stdarg.h>          /* va_start and the like */
8
 
#ifdef __cplusplus
9
 
extern "C" {
10
 
#endif
11
 
int vsnprintf(char *str, size_t n, char const *fmt, va_list ap);
12
 
int snprintf(char *str, size_t n, char const *fmt, ...);
13
 
#ifdef __cplusplus
14
 
}
15
 
#endif
16
 
 
17
 
#ifdef __cplusplus  
18
 
extern "C" void usleep(unsigned int);
19
 
#else
20
 
void usleep(unsigned int);
21
 
#endif
22
 
 
23
 
#endif