mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 05:53:59 +00:00
Indentation fixes.
darcs-hash:20071015132125-75c98-c59b345017f97ac4fe9bb166bf5128245a66e05a.gz
This commit is contained in:
parent
0c1b40e3b3
commit
a97faaf664
1 changed files with 11 additions and 11 deletions
22
fallback.h
22
fallback.h
|
@ -59,7 +59,7 @@ struct winsize
|
||||||
unsigned short ws_row;
|
unsigned short ws_row;
|
||||||
unsigned short ws_col;
|
unsigned short ws_col;
|
||||||
}
|
}
|
||||||
;
|
;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -283,8 +283,8 @@ long convert_digit( wchar_t d, int base );
|
||||||
supported.
|
supported.
|
||||||
*/
|
*/
|
||||||
long wcstol(const wchar_t *nptr,
|
long wcstol(const wchar_t *nptr,
|
||||||
wchar_t **endptr,
|
wchar_t **endptr,
|
||||||
int base);
|
int base);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
#ifndef HAVE_WCSLCAT
|
#ifndef HAVE_WCSLCAT
|
||||||
|
@ -337,7 +337,7 @@ struct drand48_data
|
||||||
*/
|
*/
|
||||||
unsigned int seed;
|
unsigned int seed;
|
||||||
}
|
}
|
||||||
;
|
;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Fallback implementation of lrand48_r. Internally uses rand_r, so it is pretty weak.
|
Fallback implementation of lrand48_r. Internally uses rand_r, so it is pretty weak.
|
||||||
|
@ -382,8 +382,8 @@ char * textdomain( const char * domainname );
|
||||||
Fallback implementation of dcgettext. Just returns the original string.
|
Fallback implementation of dcgettext. Just returns the original string.
|
||||||
*/
|
*/
|
||||||
char * dcgettext ( const char * domainname,
|
char * dcgettext ( const char * domainname,
|
||||||
const char * msgid,
|
const char * msgid,
|
||||||
int category );
|
int category );
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -413,7 +413,7 @@ struct option
|
||||||
int *flag;
|
int *flag;
|
||||||
int val;
|
int val;
|
||||||
}
|
}
|
||||||
;
|
;
|
||||||
|
|
||||||
#ifndef no_argument
|
#ifndef no_argument
|
||||||
#define no_argument 0
|
#define no_argument 0
|
||||||
|
@ -428,10 +428,10 @@ struct option
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int getopt_long(int argc,
|
int getopt_long(int argc,
|
||||||
char * const argv[],
|
char * const argv[],
|
||||||
const char *optstring,
|
const char *optstring,
|
||||||
const struct option *longopts,
|
const struct option *longopts,
|
||||||
int *longindex);
|
int *longindex);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue