root/include/linux/mktime.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef _LINUX_MKTIME_H
   2 #define _LINUX_MKTIME_H
   3 
   4 struct mktime {
   5         int sec;
   6         int min;
   7         int hour;
   8         int day;
   9         int mon;
  10         int year;
  11 };
  12 
  13 #endif

/* [previous][next][first][last][top][bottom][index][help] */