1/**
2 * \file
3 * \brief Fish arm specific commands
4 */
5/*
6 * Copyright (c) 2014, ETH Zurich.
7 * All rights reserved.
8 *
9 * This file is distributed under the terms in the attached LICENSE file.
10 * If you do not find this file, copies can be found by writing to:
11 * ETH Zurich D-INFK, Haldeneggsteig 4, CH-8092 Zurich. Attn: Systems Group.
12 */
13
14#include <stdio.h>
15
16#include <stdlib.h>
17#include "fish.h"
18
19int reset(int argc, char *argv[])
20{
21   printf("RESET NOT SUPPORTED ON ARM\n");
22   return EXIT_SUCCESS;
23}
24
25int poweroff(int argc, char *argv[])
26{
27   printf("POWER OFF NOT SUPPORTED ON ARM\n");
28   return EXIT_SUCCESS;
29}
30