Clean up gcc-compat.h.
[dss.git] / file.c
diff --git a/file.c b/file.c
index 648421816439acf9a0acd12e002f1da7f780a31e..d606c16e15242a4ed9069cd1929428ec42bbcd02 100644 (file)
--- a/file.c
+++ b/file.c
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2006-2010 Andre Noll <maan@systemlinux.org>
+ * Copyright (C) 2006-2010 Andre Noll <maan@tuebingen.mpg.de>
  *
  * Licensed under the GPL v2. For licencing details see COPYING.
  */
@@ -23,7 +23,7 @@
  * Call a function for each subdirectory of the current working directory.
  *
  * \param dirname The directory to traverse.
- * \param func The function to call for each subdirecrtory.
+ * \param func The function to call for each subdirectory.
  * \param private_data Pointer to an arbitrary data structure.
  *
  * For each top-level directory under \a dirname, the supplied function \a func is
@@ -69,19 +69,6 @@ out:
        closedir(dir);
        return ret;
 }
-/**
- * Wrapper for chdir(2).
- *
- * \param path The specified directory.
- *
- * \return Standard.
- */
-int dss_chdir(const char *path)
-{
-       if (chdir(path) >= 0)
-               return 1;
-       return -ERRNO_TO_DSS_ERROR(errno);
-}
 
 /**
  * Set a file descriptor to non-blocking mode.