diff --git a/twitter.inc b/twitter.inc
index 9440cf8..d5e829a 100644
--- a/twitter.inc
+++ b/twitter.inc
@@ -8,7 +8,6 @@
  * Connect to the API using the 'proper' version (Oauth vs. standard)
  */
 function twitter_connect($account) {
-  module_load_include('lib.php', 'twitter');
   $auth = $account->get_auth();
   if (_twitter_use_oauth() && $auth['oauth_token'] && $auth['oauth_token_secret']) {
     module_load_include('lib.php', 'oauth_common');
@@ -67,7 +66,6 @@ function twitter_account_save($twitter_user, $save_auth = FALSE, $account = NULL
  *
  */
 function twitter_account_load($id) {
-  module_load_include('lib.php', 'twitter');
   if ( $values = db_query("SELECT * FROM {twitter_account} WHERE twitter_uid = :twitter_uid", array(':twitter_uid' => $id))->fetchAssoc() ) {
     $values['id'] = $values['twitter_uid'];
     $account = new TwitterUser($values);
@@ -104,8 +102,6 @@ function twitter_status_save($status) {
  * Post a message to twitter
  */
 function twitter_set_status($twitter_account, $status) {
-  module_load_include('lib.php', 'twitter');
-
   $twitter = twitter_connect($twitter_account);
   $twitter->status_update($status);
 }
diff --git a/twitter.pages.inc b/twitter.pages.inc
index 454521a..130e960 100644
--- a/twitter.pages.inc
+++ b/twitter.pages.inc
@@ -305,7 +305,6 @@ function twitter_account_form($form, $form_state, $account = NULL) {
  * Loads Twitter account details and adds them to the user account
  */
 function twitter_account_form_submit($form, &$form_state) {
-  module_load_include('lib.php', 'twitter');
   module_load_include('inc', 'twitter');
 
   $name = $form_state['values']['screen_name'];
@@ -320,7 +319,6 @@ function twitter_account_form_submit($form, &$form_state) {
  */
 function twitter_account_oauth_validate($form, &$form_state) {
   module_load_include('lib.php', 'oauth_common');
-  module_load_include('lib.php', 'twitter');
 
   $key = variable_get('twitter_consumer_key', '');
   $secret = variable_get('twitter_consumer_secret', '');
@@ -395,7 +393,6 @@ function twitter_oauth_callback_form_validate($form, &$form_state) {
   }
 
   module_load_include('lib.php', 'oauth_common');
-  module_load_include('lib.php', 'twitter');
   module_load_include('inc', 'twitter');
 
   if ($twitter = new TwitterOAuth($key, $secret, $token['oauth_token'], $token['oauth_token_secret'])) {
diff --git a/twitter_signin/twitter_signin.module b/twitter_signin/twitter_signin.module
index 54cf48d..36c4e07 100644
--- a/twitter_signin/twitter_signin.module
+++ b/twitter_signin/twitter_signin.module
@@ -59,7 +59,6 @@ function twitter_signin_button() {
  */
 function twitter_signin_redirect() {
   module_load_include('lib.php', 'oauth');
-  module_load_include('lib.php', 'twitter');
   module_load_include('inc', 'twitter');
 
   $key = variable_get('twitter_consumer_key', '');
@@ -191,7 +190,6 @@ function twitter_signin_user_login(&$edit, $account) {
  */
 function _twitter_signin_add_account($account) {
   if (isset($_SESSION['twitter']['values'])) {
-    module_load_include('lib.php', 'twitter');
     module_load_include('inc', 'twitter');
     $key = variable_get('twitter_consumer_key', '');
     $secret = variable_get('twitter_consumer_secret', '');
