~ubuntu-branches/ubuntu/raring/avr-libc/raring-proposed

« back to all changes in this revision

Viewing changes to libc/string/memchr.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: memchr.S,v 1.9.2.1 2009/04/01 23:12:13 arcanum Exp $ */
 
29
/* $Id: memchr.S 2191 2010-11-05 13:45:57Z arcanum $ */
30
30
 
31
31
/** \file */
32
32
/** \ingroup avr_string
40
40
    \returns The memchr() function returns a pointer to the matching byte or
41
41
    NULL if the character does not occur in the given memory area.  */
42
42
 
 
43
#if !defined(__AVR_TINY__)
 
44
 
43
45
#if !defined(__DOXYGEN__)
44
46
 
45
47
#include "macros.inc"
77
79
        .size   _U(memchr), .L_memchr_end - _U(memchr)
78
80
 
79
81
#endif /* not __DOXYGEN__ */
 
82
 
 
83
#endif /* !defined(__AVR_TINY__) */