1*7304104dSAndroid Build Coastguard Worker /* 2*7304104dSAndroid Build Coastguard Worker * Copyright 2013, The Android Open Source Project 3*7304104dSAndroid Build Coastguard Worker * 4*7304104dSAndroid Build Coastguard Worker * Licensed under the Apache License, Version 2.0 (the "License"); 5*7304104dSAndroid Build Coastguard Worker * you may not use this file except in compliance with the License. 6*7304104dSAndroid Build Coastguard Worker * You may obtain a copy of the License at 7*7304104dSAndroid Build Coastguard Worker * 8*7304104dSAndroid Build Coastguard Worker * http://www.apache.org/licenses/LICENSE-2.0 9*7304104dSAndroid Build Coastguard Worker * 10*7304104dSAndroid Build Coastguard Worker * Unless required by applicable law or agreed to in writing, software 11*7304104dSAndroid Build Coastguard Worker * distributed under the License is distributed on an "AS IS" BASIS, 12*7304104dSAndroid Build Coastguard Worker * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13*7304104dSAndroid Build Coastguard Worker * See the License for the specific language governing permissions and 14*7304104dSAndroid Build Coastguard Worker * limitations under the License. 15*7304104dSAndroid Build Coastguard Worker */ 16*7304104dSAndroid Build Coastguard Worker 17*7304104dSAndroid Build Coastguard Worker #ifndef ELFUTILS_LIBINTL_H 18*7304104dSAndroid Build Coastguard Worker #define ELFUTILS_LIBINTL_H 19*7304104dSAndroid Build Coastguard Worker 20*7304104dSAndroid Build Coastguard Worker /* no internalization */ 21*7304104dSAndroid Build Coastguard Worker #define gettext(x) (x) 22*7304104dSAndroid Build Coastguard Worker #define dgettext(x,y) (y) 23*7304104dSAndroid Build Coastguard Worker 24*7304104dSAndroid Build Coastguard Worker #endif /* ELFUTILS_LIBINTL_H */ 25