diff options
author | an4967 <an4967@gmail.com> | 2017-10-19 14:58:17 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-19 14:58:17 +0900 |
commit | 7619c90cf3d24494d863b52cb2134328854c02b8 (patch) | |
tree | e5ad12640290d33750e3e11892528899d4065337 /apps/shell | |
parent | 126b9e576deb36b05d5d47a22f7463be162c7953 (diff) | |
parent | b64f3a90732fa19b0a0e96cb978c6fc22619391b (diff) | |
download | tinyara-7619c90cf3d24494d863b52cb2134328854c02b8.tar.gz tinyara-7619c90cf3d24494d863b52cb2134328854c02b8.tar.bz2 tinyara-7619c90cf3d24494d863b52cb2134328854c02b8.zip |
Merge branch 'master' into fix_st_things_bug
Diffstat (limited to 'apps/shell')
-rw-r--r-- | apps/shell/tash_init.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/apps/shell/tash_init.c b/apps/shell/tash_init.c index e486c093..a7ddaa36 100644 --- a/apps/shell/tash_init.c +++ b/apps/shell/tash_init.c @@ -15,6 +15,39 @@ * language governing permissions and limitations under the License. * ****************************************************************************/ +/**************************************************************************** + * + * Copyright (C) 2012 Gregory Nutt. All rights reserved. + * Author: Gregory Nutt <gnutt@nuttx.org> + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the + * distribution. + * 3. Neither the name NuttX nor the names of its contributors may be + * used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS + * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************/ /// @file tash_init.c /// @brief functions to initialize TinyAra SHell (TASH) |