blob: ef48905b85555737bcfe9a9f0548bd3a496ebcb0 [file] [log] [blame]
Daniel Erat67829612019-03-15 15:29:29 -07001/*
2 * Copyright 2019 The Chromium OS Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7#include <stdio.h>
8#include <unistd.h>
9
10int main(int argc, char** argv) {
11 return execv("/bin/bash", argv);
12}