~ubuntu-branches/ubuntu/saucy/avr-libc/saucy

« back to all changes in this revision

Viewing changes to libc/pmstring/strcspn_P.S

  • Committer: Bazaar Package Importer
  • Author(s): Hakan Ardo
  • Date: 2011-07-14 11:15:32 UTC
  • mfrom: (1.1.10 upstream) (4.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20110714111532-e83i3vqdowgxw8lv
Tags: 1:1.7.1-2
include/util/delay.h.in: Add math.h to list of includes (closes:
#633822)

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
27
  POSSIBILITY OF SUCH DAMAGE. */
28
28
 
29
 
/* $Id: strcspn_P.S,v 1.1.4.1 2009/04/01 23:11:54 arcanum Exp $ */
 
29
/* $Id: strcspn_P.S 2191 2010-11-05 13:45:57Z arcanum $ */
30
30
 
31
31
/** \file */
32
32
/** \ingroup avr_pgmspace
41
41
    the initial segment of \p s which are not in the string \p reject.
42
42
    The terminating zero is not considered as a part of string. */
43
43
 
 
44
#if !defined(__AVR_TINY__)
 
45
 
44
46
#ifndef __DOXYGEN__
45
47
 
46
48
#include "macros.inc"
79
81
 
80
82
        .size _U(strcspn_P), . - _U(strcspn_P)
81
83
#endif  /* !__DOXYGEN__ */
 
84
 
 
85
#endif /* !defined(__AVR_TINY__) */