~ubuntu-branches/ubuntu/quantal/uclibc/quantal

« back to all changes in this revision

Viewing changes to libc/sysdeps/linux/arm/aeabi_mb_cur_max.c

  • Committer: Bazaar Package Importer
  • Author(s): Hector Oron
  • Date: 2011-06-11 03:06:20 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20110611030620-ywjfvyuqvrpsm282
Tags: 0.9.32-1
* New upstream release
* Add myself as maintainer
* Bump standards version 
* Add Vcs-Git, Vcs-Browser and Homepage fields
* Add watch file 

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#include <locale.h>
21
21
#include <stdlib.h>
22
22
 
23
 
#ifdef __UCLIBC_HAS_WCHAR__
24
 
libc_hidden_proto(_stdlib_mb_cur_max)
25
 
#endif
26
 
 
27
23
int
28
24
__aeabi_MB_CUR_MAX (void)
29
25
{
30
 
#ifdef __UCLIBC_HAS_WCHAR__
31
26
  return MB_CUR_MAX;
32
 
#else
33
 
  return 1;
34
 
#endif
35
27
}