-rw-r--r-- | core/opie-login/passworddialogimpl.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/core/opie-login/passworddialogimpl.cpp b/core/opie-login/passworddialogimpl.cpp index 852708e..d9132e2 100644 --- a/core/opie-login/passworddialogimpl.cpp +++ b/core/opie-login/passworddialogimpl.cpp @@ -16,40 +16,45 @@ _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU General ..}^=.= = ; Public License for more details. ++= -. .` .: : = ...= . :.=- You should have received a copy of the GNU -. .:....=;==+<; General Public License along with this file; -_. . . )=. = see the file COPYING. If not, write to the -- :-=` Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ - #include <qlayout.h> #include <qlabel.h> #include <qlineedit.h> #include <qvalidator.h> #include <qmessagebox.h> #include <qhbox.h> #include <qtoolbutton.h> + + #include <sys/types.h> #include <pwd.h> #include <shadow.h> #include <stdio.h> #include <time.h> #include <unistd.h> +// Shitty gcc2 toolchain +extern "C" char* crypt( const char*, const char* ); + + #include "passworddialogimpl.h" // This function is taken from 'busybox'. static int i64c(int i) { if (i <= 0) return ('.'); if (i == 1) return ('/'); if (i >= 2 && i < 12) return ('0' - 2 + i); |