OSDN Git Service

libc: add missing truncate() declaration
authorDavid 'Digit' Turner <digit@google.com>
Fri, 11 Jun 2010 21:37:34 +0000 (14:37 -0700)
committerDavid 'Digit' Turner <digit@google.com>
Fri, 11 Jun 2010 21:40:02 +0000 (14:40 -0700)
Change-Id: Icb3601bbc9365b75b05ff443a39192f9cd3cbfb7

libc/docs/CHANGES.TXT
libc/include/unistd.h

index 2ae91d5..b57e87a 100644 (file)
@@ -18,6 +18,9 @@ Differences between current and Android 2.2:
 
 - <termio.h>: added missing header (just includes <termios.h>)
 
+- <unistd.h>: add missing declaration for truncate(). The implementation
+  was already here since Android 1.5.
+
 -------------------------------------------------------------------------------
 Differences between Android 2.2. and Android 2.1:
 
index b4f1dda..7554198 100644 (file)
@@ -124,6 +124,7 @@ extern int readlink(const char *, char *, size_t);
 extern int chown(const char *, uid_t, gid_t);
 extern int fchown(int, uid_t, gid_t);
 extern int lchown(const char *, uid_t, gid_t);
+extern int truncate(const char *, off_t);
 extern char *getcwd(char *, size_t);
 
 extern int sync(void);