Skip to content

Commit

Permalink
xstat() will never be implemented under Carbon. Fortunately it also d…
Browse files Browse the repository at this point in the history
…oesn't appear to be used anywhere.
  • Loading branch information
jackjansen committed Jan 12, 2001
1 parent bef8f68 commit d9d0b5f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Mac/Modules/macmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include <string.h>
#include <errno.h>

#if !TARGET_API_MAC_CARBON_NOTYET
/* XXXX Skip for Carbon, for now */
#if !TARGET_API_MAC_CARBON
/* Skip for Carbon */
#include "macstat.h"
#endif

Expand All @@ -51,7 +51,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include <sys/types.h>
#include <sys/stat.h>
#else /* USE_GUSI */
#if !TARGET_API_MAC_CARBON_NOTYET
#if !TARGET_API_MAC_CARBON
#define stat macstat
#endif
#endif /* USE_GUSI */
Expand Down Expand Up @@ -499,7 +499,7 @@ mac_fstat(self, args)
}
#endif /* WEHAVE_FSTAT */

#if !TARGET_API_MAC_CARBON_NOTYET
#if !TARGET_API_MAC_CARBON
static PyObject *
mac_xstat(self, args)
PyObject *self;
Expand Down Expand Up @@ -623,7 +623,7 @@ static struct PyMethodDef mac_methods[] = {
{"rename", mac_rename},
{"rmdir", mac_rmdir},
{"stat", mac_stat},
#if !TARGET_API_MAC_CARBON_NOTYET
#if !TARGET_API_MAC_CARBON
{"xstat", mac_xstat},
#endif
{"sync", mac_sync},
Expand Down

0 comments on commit d9d0b5f

Please sign in to comment.