~ubuntu-branches/ubuntu/breezy/ace/breezy

« back to all changes in this revision

Viewing changes to ace/os_include/os_wordexp.h

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad, Benjamin Montgomery, Adam Conrad
  • Date: 2005-09-18 22:51:38 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge) (0.1.2 woody)
  • Revision ID: james.westby@ubuntu.com-20050918225138-seav22q6fyylb536
Tags: 5.4.7-3ubuntu1
[ Benjamin Montgomery ]
* Added a patch for amd64 and powerpc that disables the compiler
  option -fvisibility-inlines-hidden

[ Adam Conrad ]
* Added DPATCH_OPTION_CPP=1 to debian/patches/00options to make
  Benjamin's above changes work correctly with dpatch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// -*- C++ -*-
2
 
 
3
 
//=============================================================================
4
 
/**
5
 
 *  @file    os_wordexp.h
6
 
 *
7
 
 *  word-expansion types
8
 
 *
9
 
 *  os_wordexp.h,v 1.2 2003/07/19 19:04:15 dhinton Exp
10
 
 *
11
 
 *  @author Don Hinton <dhinton@dresystems.com>
12
 
 *  @author This code was originally in various places including ace/OS.h.
13
 
 */
14
 
//=============================================================================
15
 
 
16
 
#ifndef ACE_OS_INCLUDE_OS_WORDEXP_H
17
 
#define ACE_OS_INCLUDE_OS_WORDEXP_H
18
 
 
19
 
#include /**/ "ace/pre.h"
20
 
 
21
 
#include "ace/config-all.h"
22
 
 
23
 
#if !defined (ACE_LACKS_PRAGMA_ONCE)
24
 
# pragma once
25
 
#endif /* ACE_LACKS_PRAGMA_ONCE */
26
 
 
27
 
#include "ace/os_include/os_stddef.h" // size_t
28
 
 
29
 
#if !defined (ACE_LACKS_WORDEXP_H)
30
 
#  include /**/ <wordexp.h>
31
 
#endif /* !ACE_LACKS_WORDEXP_H */
32
 
 
33
 
// Place all additions (especially function declarations) within extern "C" {}
34
 
#ifdef __cplusplus
35
 
extern "C"
36
 
{
37
 
#endif /* __cplusplus */
38
 
 
39
 
#ifdef __cplusplus
40
 
}
41
 
#endif /* __cplusplus */
42
 
 
43
 
#include /**/ "ace/post.h"
44
 
#endif /* ACE_OS_INCLUDE_OS_WORDEXP_H */