aboutsummaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.vnet.ibm.com>2015-06-15 11:39:36 +1000
committerStewart Smith <stewart@linux.vnet.ibm.com>2015-06-15 11:39:36 +1000
commit3caf8297799b2b227501404925cf8f1389cf0065 (patch)
tree1ebadcaed00b5b2caf49701926a23cdcaa6a58d1 /libc
parent77b9eb608ee30a37306080585581410add3eae29 (diff)
downloadskiboot-3caf8297799b2b227501404925cf8f1389cf0065.zip
skiboot-3caf8297799b2b227501404925cf8f1389cf0065.tar.gz
skiboot-3caf8297799b2b227501404925cf8f1389cf0065.tar.bz2
Remove unused struct tm elements
Better to error out than suddenly have places use uninitalized data. Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'libc')
-rw-r--r--libc/include/time.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/libc/include/time.h b/libc/include/time.h
index 517f596..8d34fdb 100644
--- a/libc/include/time.h
+++ b/libc/include/time.h
@@ -19,11 +19,6 @@ struct tm {
int tm_mday;
int tm_mon;
int tm_year;
-
- /* unused in skiboot */
- int tm_wday;
- int tm_yday;
- int tm_isdst;
};
typedef long time_t;