~ubuntu-branches/ubuntu/utopic/coreutils/utopic-proposed

« back to all changes in this revision

Viewing changes to lib/sys_stat.in.h

  • Committer: Colin Watson
  • Date: 2013-10-30 15:48:33 UTC
  • mfrom: (8.3.5 sid)
  • Revision ID: cjwatson@canonical.com-20131030154833-xdt6e1yfffqom1c4
merge from Debian 8.21-1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Provide a more complete sys/stat header file.
2
 
   Copyright (C) 2005-2012 Free Software Foundation, Inc.
 
2
   Copyright (C) 2005-2013 Free Software Foundation, Inc.
3
3
 
4
4
   This program is free software; you can redistribute it and/or modify
5
5
   it under the terms of the GNU General Public License as published by
150
150
# endif
151
151
#endif
152
152
 
 
153
#ifndef S_ISMPX /* AIX */
 
154
# define S_ISMPX(m) 0
 
155
#endif
 
156
 
153
157
#ifndef S_ISNAM /* Xenix */
154
158
# ifdef S_IFNAM
155
159
#  define S_ISNAM(m) (((m) & S_IFMT) == S_IFNAM)
497
501
# if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
498
502
 
499
503
#  if !GNULIB_defined_rpl_mkdir
500
 
static inline int
 
504
static int
501
505
rpl_mkdir (char const *name, mode_t mode)
502
506
{
503
507
  return _mkdir (name);