Changeset 7a08c70 in mainline
- Timestamp:
 - 2018-01-22T22:48:18Z (8 years ago)
 - Branches:
 - lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
 - Children:
 - 04552d8e
 - Parents:
 - 7f9df7b9
 - Location:
 - uspace/lib/posix/include/posix
 - Files:
 - 
      
- 3 edited
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
uspace/lib/posix/include/posix/getopt.h
r7f9df7b9 r7a08c70 36 36 37 37 #include "unistd.h" 38 39 /* Option Arguments */ 40 #define no_argument 0 41 #define required_argument 1 42 #define optional_argument 2 43 44 #ifndef LIBPOSIX_INTERNAL 45 struct option { 46 const char *name; 47 int has_arg; 48 int *flag; 49 int val; 50 }; 51 #endif 52 53 extern int getopt_long(int, char * const [], const char *, const struct option *, int *); 54 38 #include "libc/getopt.h" 55 39 56 40 #endif  - 
      
uspace/lib/posix/include/posix/locale.h
r7f9df7b9 r7a08c70 41 41 #define __locale_t_defined 42 42 typedef struct __posix_locale *locale_t; 43 #ifndef LIBPOSIX_INTERNAL44 #define locale_t locale_t45 #endif46 43 #endif 47 44  - 
      
uspace/lib/posix/include/posix/time.h
r7f9df7b9 r7a08c70 48 48 #define __locale_t_defined 49 49 typedef struct __posix_locale *locale_t; 50 #ifndef LIBPOSIX_INTERNAL51 #define locale_t locale_t52 #endif53 50 #endif 54 51 55 52 #ifndef POSIX_SIGNAL_H_ 56 53 struct sigevent; 57 #ifndef LIBPOSIX_INTERNAL58 #define sigevent sigevent59 #endif60 54 #endif 61 55  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  