about summary refs log tree commit diff homepage
path: root/runtime/POSIX/stubs.c
diff options
context:
space:
mode:
authorPaul Marinescu <paul.marinescu@imperial.ac.uk>2013-08-29 15:59:16 +0100
committerPaul Marinescu <paul.marinescu@imperial.ac.uk>2013-08-29 15:59:16 +0100
commitb6939ec17b8341b3e0c9b56475e5986750380991 (patch)
treec44ae0525b1fc3ed752d235e9921d7548f65769a /runtime/POSIX/stubs.c
parent821b6f6473334eaa6c78205603faf14a2c1aca41 (diff)
downloadklee-b6939ec17b8341b3e0c9b56475e5986750380991.tar.gz
Added some of the common *at functions to the model
Diffstat (limited to 'runtime/POSIX/stubs.c')
-rw-r--r--runtime/POSIX/stubs.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/runtime/POSIX/stubs.c b/runtime/POSIX/stubs.c
index 3a9d380c..7a424d05 100644
--- a/runtime/POSIX/stubs.c
+++ b/runtime/POSIX/stubs.c
@@ -222,13 +222,6 @@ int utime(const char *filename, const struct utimbuf *buf) {
   return -1;
 }
 
-int utimes(const char *filename, const struct timeval times[2]) __attribute__((weak));
-int utimes(const char *filename, const struct timeval times[2]) {
-  klee_warning("ignoring (EPERM)");
-  errno = EPERM;
-  return -1;
-}
-
 int futimes(int fd, const struct timeval times[2]) __attribute__((weak));
 int futimes(int fd, const struct timeval times[2]) {
   klee_warning("ignoring (EBADF)");