~ubuntu-branches/ubuntu/utopic/kakasi/utopic

« back to all changes in this revision

Viewing changes to lib/libdict.c

  • Committer: Package Import Robot
  • Author(s): Jackson Doak
  • Date: 2014-03-23 10:48:13 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20140323104813-8vguwbbifn274twc
Tags: 2.3.6-0ubuntu1
* New upstream release.
* Drop 001-hyphen.patch, 0002-utf8.patch, fixed upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 * KAKASI (Kanji Kana Simple inversion program)
3
 
 * $Id: dict.c,v 1.12 2013-02-20 05:36:43 knok Exp $
 
3
 * $Id: dict.c,v 1.13 2014-02-13 07:30:35 knok Exp $
4
4
 * Copyright (C) 1992
5
5
 * Hironobu Takahashi (takahasi@tiny.or.jp)
6
6
 *
45
45
#ifdef HAVE_STDINT_H
46
46
# include <stdint.h>
47
47
#else
48
 
#define uintptr_t (int)
 
48
typedef int uintptr_t;
49
49
#endif
50
50
#include "kakasi.h"
51
51