Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(477)

Unified Diff: src/untrusted/nacl/stubs/utime.c

Issue 1065963002: Add utime implementation to libnacl (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/untrusted/nacl/stubs/utime.c
diff --git a/src/untrusted/nacl/stubs/utime.c b/src/untrusted/nacl/stubs/utime.c
deleted file mode 100644
index 8510f33137e6c9f3cde1fe76963f4cd1b9d9582c..0000000000000000000000000000000000000000
--- a/src/untrusted/nacl/stubs/utime.c
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- * Copyright 2010 The Native Client Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-
-/*
- * Stub routine for `utime' for porting support.
- */
-
-#include <sys/types.h>
-#include <utime.h>
-#include <sys/time.h>
-#include <errno.h>
-
-int utime(const char *filename, const struct utimbuf *buf) {
- errno = ENOSYS;
- return -1;
-}

Powered by Google App Engine
This is Rietveld 408576698