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

Side by Side Diff: third_party/android_crazy_linker/src/tests/foo.cpp

Issue 1180693002: Update from https://crrev.com/333737 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: rebased Created 5 years, 6 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include <android/log.h>
6 #include <stdio.h>
7
8 extern "C" void Foo() {
9 printf("%s: Entering\n", __FUNCTION__);
10 __android_log_write(ANDROID_LOG_INFO, "foo", "Hello World!");
11 fprintf(stderr, "Hello World from Foo!\n");
12 printf("%s: Exiting\n", __FUNCTION__);
13 }
OLDNEW
« no previous file with comments | « third_party/android_crazy_linker/src/tests/bench_load_library.cpp ('k') | third_party/android_crazy_linker/src/tests/foo2.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698