comparison src/libident/id_close.c @ 10:26e34ae9a3e3

changed indention and line wrapping to a more consistent style
author meillo@marmaro.de
date Mon, 27 Oct 2008 16:23:10 +0100
parents 08114f7dcc23
children
comparison
equal deleted inserted replaced
9:31cc8a89cb74 10:26e34ae9a3e3
14 #endif 14 #endif
15 15
16 #define IN_LIBIDENT_SRC 16 #define IN_LIBIDENT_SRC
17 #include "ident.h" 17 #include "ident.h"
18 18
19 int id_close __P1(ident_t *, id) 19 int
20 id_close __P1(ident_t *, id)
20 { 21 {
21 int res; 22 int res;
22 23
23 res = close(id->fd); 24 res = close(id->fd);
24 free(id); 25 free(id);
25 26
26 return res; 27 return res;
27 } 28 }
28
29