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

« back to all changes in this revision

Viewing changes to libc/stdio/fwrite.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:
7
7
 
8
8
#include "_stdio.h"
9
9
 
10
 
libc_hidden_proto(fwrite_unlocked)
11
10
 
12
11
#ifdef __DO_UNLOCKED
13
12
 
38
37
libc_hidden_def(fwrite_unlocked)
39
38
 
40
39
#ifndef __UCLIBC_HAS_THREADS__
41
 
libc_hidden_proto(fwrite)
42
40
strong_alias(fwrite_unlocked,fwrite)
43
41
libc_hidden_def(fwrite)
44
42
#endif
45
43
 
46
44
#elif defined __UCLIBC_HAS_THREADS__
47
45
 
48
 
libc_hidden_proto(fwrite)
49
46
size_t fwrite(const void * __restrict ptr, size_t size,
50
47
                          size_t nmemb, register FILE * __restrict stream)
51
48
{