Update copyright notices.
[state-utils.git] / src / state.h
blob1997dcbd27114508d0f939dd3ca5494bf4f46464
1 /*
2 * state-utils
3 * (c) 2005-2009 by Avuton Olrich <avuton@gmail.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 char *get_home_dir(void);
22 #define check_perror(errno,str) \
23 { \
24 if(errno) { \
25 perror(str); \
26 exit(errno); \
27 } \