From 14db7ed84116e5d7006b3e6b6b34375e605ed9c0 Mon Sep 17 00:00:00 2001 From: "munkyu.im" Date: Fri, 16 Dec 2011 15:25:33 +0900 Subject: [PATCH] [Title] add boilerplate to sbd [Type] [Module] [Priority] [CQ#] [Redmine#] [Problem] [Cause] [Solution] [TestCase] --- sdb.c | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ sdb.h | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 105 insertions(+) diff --git a/sdb.c b/sdb.c index b1309b6..ed2ba59 100644 --- a/sdb.c +++ b/sdb.c @@ -1,3 +1,56 @@ +/* + * sdb + * + * Copyright (C) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: + * MunKyu Im + * DoHyung Hong + * SeokYeon Hwang + * Hyunjun Son + * SangJin Kim + * KiTae Kim + * JinHyung Jo + * SungMin Ha + * JiHye Kim + * GiWoong Kim + * YeongKyoon Lee + * DongKyun Yun + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * Contributors: + * - S-Core Co., Ltd + * + */ + +/* This is a modified and simplified version of original sockets.c, qemu-setup.c in android */ + +/* Copyright (C) 2006-2010 The Android Open Source Project +** +** This software is licensed under the terms of the GNU General Public +** License version 2, as published by the Free Software Foundation, and +** may be copied, distributed, and modified under those terms. +** +** This program is distributed in the hope that it will be useful, +** but WITHOUT ANY WARRANTY; without even the implied warranty of +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +** GNU General Public License for more details. +*/ + + #ifdef _WIN32 #include #include diff --git a/sdb.h b/sdb.h index 599983a..6007626 100644 --- a/sdb.h +++ b/sdb.h @@ -1,3 +1,55 @@ +/* + * sdb + * + * Copyright (C) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: + * MunKyu Im + * DoHyung Hong + * SeokYeon Hwang + * Hyunjun Son + * SangJin Kim + * KiTae Kim + * JinHyung Jo + * SungMin Ha + * JiHye Kim + * GiWoong Kim + * YeongKyoon Lee + * DongKyun Yun + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * Contributors: + * - S-Core Co., Ltd + * + */ + +/* This is a modified and simplified version of original sockets.h in android */ + +/* Copyright (C) 2006-2010 The Android Open Source Project +** +** This software is licensed under the terms of the GNU General Public +** License version 2, as published by the Free Software Foundation, and +** may be copied, distributed, and modified under those terms. +** +** This program is distributed in the hope that it will be useful, +** but WITHOUT ANY WARRANTY; without even the implied warranty of +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +** GNU General Public License for more details. +*/ + #include #include #include -- 2.7.4